app.ts 326 B

12345678910
  1. /*
  2. In NativeScript, the app.ts file is the entry point to your application.
  3. You can use this file to perform app-level initialization, but the primary
  4. purpose of the file is to pass control to the app’s first module.
  5. */
  6. import { svelteNative } from "svelte-native";
  7. import App from "./App.svelte";
  8. svelteNative(App, {});