2016-09-21 18:18:54 -06:00
|
|
|
import './sass/main.scss';
|
2016-09-21 14:40:25 -06:00
|
|
|
|
2017-01-14 12:55:42 -07:00
|
|
|
import Inferno from 'inferno';
|
|
|
|
import Component from 'inferno-component';
|
2016-09-21 14:40:25 -06:00
|
|
|
|
2017-04-04 14:39:35 -06:00
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
|
|
require('inferno-devtools');
|
|
|
|
}
|
|
|
|
|
|
|
|
import {Header} from './components/structure/Header';
|
|
|
|
import {Lexiconga} from './components/Lexiconga';
|
|
|
|
import {Footer} from './components/structure/Footer';
|
|
|
|
|
2017-04-03 22:24:14 -06:00
|
|
|
class App extends Component {
|
|
|
|
constructor (props) {
|
2016-09-21 14:40:25 -06:00
|
|
|
super(props);
|
2016-09-22 14:05:49 -06:00
|
|
|
}
|
|
|
|
|
2017-04-03 22:24:14 -06:00
|
|
|
render () {
|
2016-09-21 14:40:25 -06:00
|
|
|
return (
|
2016-09-21 18:18:54 -06:00
|
|
|
<div>
|
2017-04-04 14:39:35 -06:00
|
|
|
<Header />
|
2017-01-14 12:55:42 -07:00
|
|
|
|
2017-04-04 14:39:35 -06:00
|
|
|
<Lexiconga />
|
2016-09-27 15:12:48 -06:00
|
|
|
|
2017-04-04 14:39:35 -06:00
|
|
|
<Footer />
|
2016-09-21 18:18:54 -06:00
|
|
|
</div>
|
2016-09-21 14:40:25 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-03 22:24:14 -06:00
|
|
|
Inferno.render(<App />, document.getElementById('site'));
|