svrjs-nextjs-website/app/(auth)/email-editor/layout.tsx

10 lines
220 B
TypeScript
Raw Normal View History

2024-11-25 08:42:23 +01:00
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Admin // Email editor"
};
export default function logPages({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}