Files
archived-next-auth/apps/dev/nextjs-v4/app/layout.tsx
2023-04-15 17:02:46 +01:00

13 lines
177 B
TypeScript

export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html>
<head></head>
<body>{children}</body>
</html>
)
}