UNPKG

@nativescript/template-hello-world-ng-vision

Version:
17 lines (14 loc) 584 B
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core' import { NativeScriptModule } from '@nativescript/angular' import { AppRoutingModule } from './app-routing.module' import { AppComponent } from './app.component' import { ItemsComponent } from './item/items.component' import { ItemDetailComponent } from './item/item-detail.component' @NgModule({ bootstrap: [AppComponent], imports: [NativeScriptModule, AppRoutingModule], declarations: [AppComponent, ItemsComponent, ItemDetailComponent], providers: [], schemas: [NO_ERRORS_SCHEMA], }) export class AppModule {}