Created
June 16, 2024 14:34
-
-
Save PaulieScanlon/0c7ed1246d50a25d353dc2cd182e0246 to your computer and use it in GitHub Desktop.
Vote 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: 'Vote', | |
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