adrift/client/main.tsx
2023-08-10 21:28:15 -04:00

11 lines
292 B
TypeScript

import "preact/debug";
import { h, render } from 'preact'
import 'preact/devtools';
import App from "./App";
window.addEventListener("load", () => {
const container = document.getElementById("app") as HTMLElement;
let app = <App />;
console.log(app);
render(<App />, container);
});