mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-12 05:50:00 -04:00
10 lines
241 B
TypeScript
10 lines
241 B
TypeScript
import "preact/debug";
|
|
import { h, render } from 'preact'
|
|
import 'preact/devtools';
|
|
import App from "./App";
|
|
|
|
|
|
const container = document.getElementById("app") as HTMLElement;
|
|
let app = <App />;
|
|
console.log(app);
|
|
render(<App />, container);
|