1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-07-04 06:34:16 +02:00
Lexiconga/src/index.jsx

33 lines
604 B
React
Raw Normal View History

import './sass/main.scss';
import Inferno from 'inferno';
import Component from 'inferno-component';
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';
class App extends Component {
constructor (props) {
super(props);
}
render () {
return (
<div>
<Header />
<Lexiconga />
<Footer />
</div>
);
}
}
Inferno.render(<App />, document.getElementById('site'));