mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-13 18:59:22 -05:00
8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import "./styles/index.scss";
|
|
import { render } from "preact";
|
|
|
|
import { App } from "./pages/app";
|
|
import "./updateWorker";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
render(<App />, document.getElementById("app")!);
|