Blame view

imports/ui/layouts/App.js 321 Bytes
2b1ad7917   tmcdeveloper   wip moving to Met...
1
2
  import React from 'react';
  import { Grid } from 'react-bootstrap';
3540345c5   themeteorchef   handful of fixes
3
  import AppNavigation from '../containers/AppNavigation.js';
2b1ad7917   tmcdeveloper   wip moving to Met...
4

3540345c5   themeteorchef   handful of fixes
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  const App = ({ children }) => (
    <div>
      <AppNavigation />
      <Grid>
        { children }
      </Grid>
    </div>
  );
  
  App.propTypes = {
    children: React.PropTypes.node,
  };
  
  export default App;