summaryrefslogtreecommitdiffstats
path: root/html/src/index.tsx
blob: 185872c46de34ce9e7784022fff8363507270dd5 (plain)
1
2
3
4
5
6
import 'whatwg-fetch';
import { h, render } from 'preact';
import { App } from './components/app';
import './style/index.scss';

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