Files
vercel__next.js/examples/auth/app/layout.tsx
2024-11-04 11:42:54 +00:00

19 lines
303 B
TypeScript

import "./globals.css";
export const metadata = {
title: "Next.js Authentication",
description: "Example using NextAuth.js",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}