mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
36 lines
946 B
JavaScript
36 lines
946 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Footer from '../../../footer';
|
|
import GlobalNotification from '../../../global_notification';
|
|
|
|
import { getSubdomain } from '../../../../utils/general_utils';
|
|
|
|
|
|
let PrizeApp = React.createClass({
|
|
propTypes: {
|
|
children: React.PropTypes.oneOfType([
|
|
React.PropTypes.arrayOf(React.PropTypes.element),
|
|
React.PropTypes.element
|
|
]),
|
|
history: React.PropTypes.object,
|
|
routes: React.PropTypes.arrayOf(React.PropTypes.object)
|
|
},
|
|
|
|
render() {
|
|
const { children } = this.props;
|
|
let subdomain = getSubdomain();
|
|
|
|
return (
|
|
<div className={'container ascribe-prize-app client--' + subdomain}>
|
|
{children}
|
|
<GlobalNotification />
|
|
<div id="modal" className="container"></div>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default PrizeApp;
|