mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Update codemirror, remove opensans * changelog * Remove our one usage of sans * Update JS dependency too
11 lines
235 B
TypeScript
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);
|
|
} |