Last active
January 26, 2017 04:47
-
-
Save ryanjyost/2ebf142dff804ca8c25706dbeb7b49db to your computer and use it in GitHub Desktop.
rainy-day-fund/src/components/App.js
This file contains 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
//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