first commit

This commit is contained in:
Christian Lawson-Perfect 2025-02-09 20:11:49 +00:00
commit 3714d6e1fc
13 changed files with 10781 additions and 0 deletions

11
load-app.js Normal file
View file

@ -0,0 +1,11 @@
import show_error from './show-error.mjs';
import './svg-events.mjs';
async function init_app() {
const compilation_error = await show_error;
if(compilation_error) {
return;
}
const app = Elm.App.init({node: document.body, flags: {}});
}
init_app();