mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
36 lines
923 B
JavaScript
36 lines
923 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import Header from '../components/header';
|
|
import Footer from '../components/footer';
|
|
import GlobalNotification from './global_notification';
|
|
|
|
|
|
let AscribeApp = React.createClass({
|
|
propTypes: {
|
|
children: React.PropTypes.oneOfType([
|
|
React.PropTypes.arrayOf(React.PropTypes.element),
|
|
React.PropTypes.element
|
|
]),
|
|
routes: React.PropTypes.arrayOf(React.PropTypes.object)
|
|
},
|
|
|
|
render() {
|
|
let { children, routes } = this.props;
|
|
|
|
return (
|
|
<div className="container ascribe-default-app">
|
|
<Header routes={routes} />
|
|
{/* Routes are injected here */}
|
|
{children}
|
|
<Footer />
|
|
<GlobalNotification />
|
|
<div id="modal" className="container"></div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default AscribeApp;
|