blob: 1947b6e5a4d89670cae54c7949de1489f10b400a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
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.
*/
|