mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 12:38:27 -04:00
15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
import Header from "./page-header/Header";
|
|
import Footer from "./page-footer/Footer";
|
|
|
|
import styles from "./Layout.module.scss";
|
|
|
|
const Layout = ({ children }) => (
|
|
<>
|
|
<Header />
|
|
<main className={styles.main}>{children}</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
|
|
export default Layout;
|