Generateurv2/frontend/components/Layout.js
2022-05-18 10:15:54 +02:00

15 lines
292 B
JavaScript

import Head from "next/head";
import NavBar from "./NavBar.jsx";
export default function Layout({children, page}){
return (<>
<Head>
<title>{page}</title>
</Head>
<header>
<NavBar />
</header>
{children}
</>)
}