Created
April 27, 2020 07:30
-
-
Save rubenRP/164e4923f57c74ffa880ea9ea73ec20c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react" | |
import Header from "../Header" | |
import Footer from "../Footer" | |
import MobileNav from "../MobileNav" | |
import "font-awesome/css/font-awesome.min.css" | |
import "../../styles/spectre.scss" | |
import "../../styles/theme.scss" | |
const Layout = ({ children }) => { | |
return ( | |
<> | |
<div id="page-wrapper"> | |
<Header /> | |
<main>{children}</main> | |
</div> | |
<Footer /> | |
<MobileNav /> | |
</> | |
) | |
} | |
export default Layout |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment