elm-native-library/app/app.js
2023-01-13 13:57:49 +05:30

15 lines
271 B
JavaScript

import Elm from "./src/Main.elm";
import { start } from "elm-native-js"
start(
{
elmModule: Elm,
elmModuleName: "Main",
initPorts: _elmPorts => { }
}
)
/*
Do not place any code after the application has been started as it will not
be executed on iOS.
*/