hookshot/web/index.tsx

11 lines
277 B
TypeScript
Raw Permalink Normal View History

2020-12-12 13:19:55 +00:00
import { h, render } from 'preact';
import 'preact/devtools';
import App from './App';
2020-12-12 20:29:33 +00:00
import "./styling.css";
2021-04-11 15:18:49 +01:00
import "@fontsource/open-sans/files/open-sans-latin-400-normal.woff2";
2020-12-12 13:19:55 +00:00
2020-12-12 20:29:33 +00:00
const root = document.getElementsByTagName('main')[0];
2020-12-12 13:19:55 +00:00
if (root) {
render(<App />, root);
}