first commit

This commit is contained in:
Christian Lawson-Perfect 2025-02-09 20:13:36 +00:00
commit 94c58e7f74
11 changed files with 604 additions and 0 deletions

10
load-app.js Normal file
View file

@ -0,0 +1,10 @@
import show_error from './show-error.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();