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

10 lines
214 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 // Emails"
};
export default function logPages({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}