hookshot/web/index.tsx

11 lines
233 B
TypeScript
Raw Permalink Normal View History

import { render } from 'preact';
2020-12-12 13:19:55 +00:00
import 'preact/devtools';
import App from './App';
import "./fonts/fonts.scss"
import "./styling.scss";
2020-12-12 13:19:55 +00:00
const [ root ] = document.getElementsByTagName('main');
2020-12-12 13:19:55 +00:00
if (root) {
render(<App />, root);
}