Skip to content

Instantly share code, notes, and snippets.

@rubenRP
Created April 27, 2020 07:30
Show Gist options
  • Save rubenRP/164e4923f57c74ffa880ea9ea73ec20c to your computer and use it in GitHub Desktop.
Save rubenRP/164e4923f57c74ffa880ea9ea73ec20c to your computer and use it in GitHub Desktop.
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