hookshot/web/index.tsx

13 lines
368 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";
import "@vector-im/compound-design-tokens/assets/web/css/compound-design-tokens.css";
import '@vector-im/compound-web/dist/style.css';
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);
}