mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 10:55:06 -05:00
c4c0a77162
This helps Parcel generate a proper standalone JS bundle.
4 lines
127 B
JavaScript
4 lines
127 B
JavaScript
import { html, render } from "./lib/index.js";
|
|
import App from "./components/app.js";
|
|
|
|
render(html`<${App}/>`, document.body);
|