Skip to content

Instantly share code, notes, and snippets.

@ryanjyost
Last active January 26, 2017 04:47
Show Gist options
  • Save ryanjyost/2ebf142dff804ca8c25706dbeb7b49db to your computer and use it in GitHub Desktop.
Save ryanjyost/2ebf142dff804ca8c25706dbeb7b49db to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/App.js
//src/components/App.js
import React from 'react';
import { Grid, Row } from 'react-bootstrap';
import MenuBar from './MenuBar';
const App = ({children}) => {
return (
<Grid id='App'>
<Row id='MenuBar'><MenuBar/></Row>
<Row>{children}</Row>
</Grid>
);
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment