mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2025-01-06 03:54:33 +03:00
15 lines
271 B
JavaScript
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.
|
|
*/
|