Created
June 16, 2024 14:38
-
-
Save PaulieScanlon/5db7789b0e24e5f756d881d5ef1320b7 to your computer and use it in GitHub Desktop.
Result layout
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// app/layout.tsx | |
export const metadata = { | |
title: 'Results', | |
description: 'Generated by Next.js', | |
} | |
export default function RootLayout({ | |
children, | |
}: { | |
children: React.ReactNode | |
}) { | |
return ( | |
<html lang="en"> | |
<body>{children}</body> | |
</html> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment