1
0
Fork 0
mirror of https://git.sr.ht/~emersion/gamja synced 2025-04-05 03:29:54 -04:00
gamja-old/main.js
Simon Ser c4c0a77162 Avoid inline script in index.html
This helps Parcel generate a proper standalone JS bundle.
2021-11-17 10:58:02 +01:00

4 lines
127 B
JavaScript

import { html, render } from "./lib/index.js";
import App from "./components/app.js";
render(html`<${App}/>`, document.body);