WIP, psts in place, parsing mostly correclty

This commit is contained in:
2020-09-21 21:56:11 -05:00
parent 8de94aa769
commit d274352b5f
87 changed files with 4820 additions and 11 deletions

View File

@@ -1,11 +1,19 @@
import React from "react";
import Header from './header';
import Footer from './footer';
import Nav from './nav';
export default function Layout({ children }) {
return (
<body>
<div>
<Header />
{children}
</body>
<Nav />
<main>
<div className="container">
{children}
</div>
</main>
<Footer />
</div>
);
}