Skip to content

Instantly share code, notes, and snippets.

@hyukkwonepic
Created November 22, 2016 16:14
Show Gist options
  • Save hyukkwonepic/792c77b6afdee0a586087e0802700b9a to your computer and use it in GitHub Desktop.
Save hyukkwonepic/792c77b6afdee0a586087e0802700b9a to your computer and use it in GitHub Desktop.
var React = require('react');
var Navigation = require('Navigation');
var Main = (props) => {
return(
<div>
<Navigation/>
<div className="row">
<div className="column small-centered medium-6 large-4">
{props.children}
</div>
</div>
</div>
);
};
module.exports = Main;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment