Skip to content

Instantly share code, notes, and snippets.

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