@nativescript/template-blank-svelte
Version:
Blank template for NativeScript apps using Svelte
11 lines (8 loc) • 358 B
text/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 page.
*/
import { svelteNativeNoFrame } from '@nativescript-community/svelte-native'
import App from './App.svelte'
svelteNativeNoFrame(App, {})