hookshot/web/index.tsx
Will Hunt 5ee267f013
Update codemirror, remove opensans (#489)
* Update codemirror, remove opensans

* changelog

* Remove our one usage of sans

* Update JS dependency too
2022-09-16 13:23:43 +00:00

11 lines
235 B
TypeScript

import { h, render } from 'preact';
import 'preact/devtools';
import App from './App';
import "./fonts/fonts.scss"
import "./styling.scss";
const root = document.getElementsByTagName('main')[0];
if (root) {
render(<App />, root);
}