Skip to content

Instantly share code, notes, and snippets.

@markodayan
Created June 24, 2020 09:05
Show Gist options
  • Save markodayan/b52718f41437fd4088f3c59d70e0c9f7 to your computer and use it in GitHub Desktop.
Save markodayan/b52718f41437fd4088f3c59d70e0c9f7 to your computer and use it in GitHub Desktop.
Next.js Layout Component (Wrapping Layout around the custom App)
import Head from 'next/head';
import Navbar from './Navbar';
const Layout = ({ children }) => {
return (
<div>
<Head>
</Head>
<header>
<Navbar />
</header>
<main>{children}</main>
</div>
)
}
export default Layout;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment