exactly added Footer and Header to base layout

This commit is contained in:
Maximus 2022-08-19 17:17:59 +03:00
parent d38f76c38f
commit dec8bce3e3

View File

@ -11,11 +11,11 @@ type Props = {
function BaseLayout({ header, footer, children, className }: Props) { function BaseLayout({ header, footer, children, className }: Props) {
return ( return (
<div className={className}> <div className={className}>
{/* <Header /> */} <Header />
<main>{children}</main> <main>{children}</main>
{/* <Footer /> */} <Footer />
</div> </div>
); );
} }