mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 11:15:13 -05:00
5 lines
127 B
JavaScript
5 lines
127 B
JavaScript
|
import { html, render } from "./lib/index.js";
|
||
|
import App from "./components/app.js";
|
||
|
|
||
|
render(html`<${App}/>`, document.body);
|