Blame view
imports/ui/layouts/app.js
388 Bytes
2b1ad7917
|
1 2 3 |
import React from 'react'; import { Grid } from 'react-bootstrap'; import AppNavigation from '../containers/app-navigation'; |
7df77f0fa
|
4 5 6 7 8 9 |
export const App = React.createClass({ contextTypes: { router() { return React.PropTypes.func.isRequired; } }, |
2b1ad7917
|
10 11 12 13 14 15 16 17 |
render() { return <div> <AppNavigation /> <Grid> { this.props.children } </Grid> </div>; } |
7df77f0fa
|
18 |
}); |