UNPKG

@nativescript/template-tab-navigation-ng

Version:
14 lines (11 loc) 492 B
import { NgModule, NO_ERRORS_SCHEMA } from '@angular/core' import { NativeScriptCommonModule } from '@nativescript/angular' import { HomeRoutingModule } from './home-routing.module' import { HomeComponent } from './home.component' import { ItemDetailComponent } from './item-detail/item-detail.component' @NgModule({ imports: [NativeScriptCommonModule, HomeRoutingModule], declarations: [HomeComponent, ItemDetailComponent], schemas: [NO_ERRORS_SCHEMA], }) export class HomeModule {}