UNPKG

@nativescript/template-hello-world-ng

Version:
11 lines (9 loc) 288 B
import { Component, NO_ERRORS_SCHEMA } from '@angular/core'; import { PageRouterOutlet } from '@nativescript/angular'; @Component({ selector: 'ns-app', templateUrl: './app.component.html', imports: [PageRouterOutlet], schemas: [NO_ERRORS_SCHEMA], }) export class AppComponent {}