first commit
This commit is contained in:
commit
3714d6e1fc
13 changed files with 10781 additions and 0 deletions
11
load-app.js
Normal file
11
load-app.js
Normal 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();
|
Loading…
Add table
Add a link
Reference in a new issue