Generateurv2/frontend/components/Layout.js

15 lines
292 B
JavaScript
Raw Normal View History

2022-05-18 10:15:54 +02:00
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}
</>)
}