6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import { render } from "preact";
|
|
import { App } from "./app.tsx";
|
|
import "./index.scss";
|
|
|
|
render(<App />, document.getElementById("app")!);
|