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

* Major package upgrades * Update rust deps and fix a few things * Drop 18 testing * Use node 20 * lint rust * lint * changelog * Drop usage of SVGs, use compound elements. * Update widget API
13 lines
368 B
TypeScript
13 lines
368 B
TypeScript
import { render } from 'preact';
|
|
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';
|
|
|
|
const [ root ] = document.getElementsByTagName('main');
|
|
|
|
if (root) {
|
|
render(<App />, root);
|
|
} |