mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-10 01:03:36 -05:00
6 lines
213 B
TypeScript
6 lines
213 B
TypeScript
import { render } from "preact";
|
|
import "../styles/index.scss";
|
|
import { App } from "./app";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
render(<App />, document.getElementById("app")!);
|