mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
37 lines
960 B
JavaScript
37 lines
960 B
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
import Router from 'react-router';
|
|
import Hero from './components/prize_hero';
|
|
import Header from '../../header';
|
|
// import Footer from '../../footer';
|
|
import GlobalNotification from '../../global_notification';
|
|
|
|
let RouteHandler = Router.RouteHandler;
|
|
|
|
let PrizeApp = React.createClass({
|
|
mixins: [Router.State],
|
|
|
|
render() {
|
|
let header = null;
|
|
if (this.isActive('landing') || this.isActive('login') || this.isActive('signup')) {
|
|
header = <Hero />;
|
|
} else {
|
|
header = <Header showAddWork={false} />;
|
|
}
|
|
|
|
return (
|
|
<div className="ascribe-prize-app">
|
|
{header}
|
|
<div className="wp">
|
|
<RouteHandler />
|
|
</div>
|
|
<GlobalNotification />
|
|
<div id="modal" className="container"></div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default PrizeApp;
|