Skip to content

Instantly share code, notes, and snippets.

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