Created
September 24, 2016 18:11
-
-
Save iamkevingreen/56df87a64b26436d986553c09fe41a0b 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 './Global/Header' | |
import Footer from './Global/Footer' | |
export const Layout = ({content, classes, page}) => ( | |
<div className="app"> | |
<div> | |
<Header classes={classes} page={page} /> | |
</div> | |
<div className="container"> | |
{content} | |
</div> | |
<div> | |
<Footer page={page} /> | |
</div> | |
</div> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment