tubearchivist-frontend/src/components/Layout.tsx

15 lines
274 B
TypeScript
Raw Normal View History

import { Footer } from "./Footer";
import { Nav } from "./Nav";
export const Layout = ({ children }) => {
return (
<>
2022-04-14 20:33:53 +00:00
<div style={{ minHeight: "100vh" }} className="main-content">
<Nav />
{children}
</div>
<Footer />
</>
);
};