revite/src/main.tsx

9 lines
244 B
TypeScript
Raw Normal View History

2021-06-22 09:22:35 -04:00
import "./styles/index.scss";
import { render } from "preact";
2021-07-05 06:23:23 -04:00
2021-06-22 09:22:35 -04:00
import { App } from "./pages/app";
import "./updateWorker";
2021-07-05 06:23:23 -04:00
2021-06-18 10:46:30 -04:00
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
2021-06-18 10:57:08 -04:00
render(<App />, document.getElementById("app")!);