UNPKG

@nativescript/template-master-detail-ng

Version:

Master-detail interface to display collection of items from json collection and inspect and edit selected item properties.

14 lines (11 loc) 407 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' @NgModule({ bootstrap: [AppComponent], imports: [NativeScriptModule, AppRoutingModule], declarations: [AppComponent], schemas: [NO_ERRORS_SCHEMA], }) export class AppModule {}