Skip to content

Instantly share code, notes, and snippets.

Created April 7, 2017 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c82e7027e9f550fb18b2b79891f31963 to your computer and use it in GitHub Desktop.
Save anonymous/c82e7027e9f550fb18b2b79891f31963 to your computer and use it in GitHub Desktop.
import Header from './Header';
const Layout = ({children}) => (
<div>
<Header/>
{children}
</div>
);
export default Layout;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment