revite/src/main.tsx

7 lines
212 B
TypeScript
Raw Normal View History

2021-06-18 15:57:08 +01:00
import { render } from "preact";
import "./styles/index.scss";
2021-06-18 15:57:08 +01:00
import { App } from "./app";
2021-06-18 12:05:01 +01:00
2021-06-18 15:46:30 +01:00
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2021-06-18 15:57:08 +01:00
render(<App />, document.getElementById("app")!);