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