summaryrefslogtreecommitdiffstats
path: root/html/src/index.tsx
blob: 738fcd57d1e2715c20c4e0d59d7ea369d328b12f (plain)
1
2
3
4
5
6
7
8
9
if (process.env.NODE_ENV === 'development') {
    require('preact/debug');
}
import 'whatwg-fetch';
import { h, render } from 'preact';
import { App } from './components/app';
import './style/index.scss';

render(<App />, document.body);