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

* WIP * Update vite * Add oauth landing page * Add API support for GitHub oauthing * Remove console.logs * Add support for logging and and out of GitHub * Add bridge API methods * Add base link styling * Sugar syntax main get * Update vite * changelog * Review changes * Use instance to match UI * lint --------- Co-authored-by: Justin Carlson <justinc@element.io>
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { render } from 'preact';
|
|
import 'preact/devtools';
|
|
import App from './App';
|
|
import "./fonts/fonts.scss"
|
|
import "./styling.scss";
|
|
|
|
const [ root ] = document.getElementsByTagName('main');
|
|
|
|
if (root) {
|
|
render(<App />, root);
|
|
} |