mirror of
https://github.com/hariroshan/elm-native-library.git
synced 2024-12-11 14:51:58 +03:00
15 lines
420 B
TypeScript
15 lines
420 B
TypeScript
/*
|
||
In NativeScript, the app.ts file is the entry point to your application.
|
||
You can use this file to perform app-level initialization, but the primary
|
||
purpose of the file is to pass control to the app’s first module.
|
||
*/
|
||
|
||
import { Application } from '@nativescript/core'
|
||
|
||
Application.run({ moduleName: 'app-root' })
|
||
|
||
/*
|
||
Do not place any code after the application has been started as it will not
|
||
be executed on iOS.
|
||
*/
|