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