Blame view

imports/ui/layouts/app.js 369 Bytes
2b1ad7917   tmcdeveloper   wip moving to Met...
1
2
3
  import React from 'react';
  import { Grid } from 'react-bootstrap';
  import AppNavigation from '../containers/app-navigation';
7df77f0fa   tmcdeveloper   finish wiring up ...
4
  export const App = React.createClass({
76dd62c7b   tmcdeveloper   fix eslint error ...
5
6
7
    propTypes: {
      children: React.PropTypes.element.isRequired,
    },
2b1ad7917   tmcdeveloper   wip moving to Met...
8
9
    render() {
      return <div>
37c5e9bbc   tmcdeveloper   remove unnecessar...
10
        <AppNavigation />
2b1ad7917   tmcdeveloper   wip moving to Met...
11
12
13
14
        <Grid>
          { this.props.children }
        </Grid>
      </div>;
f0c912bf1   tmcdeveloper   add method tests ...
15
    },
7df77f0fa   tmcdeveloper   finish wiring up ...
16
  });