UNPKG

@nativescript/template-drawer-navigation-ng

Version:
13 lines (10 loc) 397 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' @NgModule({ imports: [NativeScriptCommonModule, HomeRoutingModule], declarations: [HomeComponent], schemas: [NO_ERRORS_SCHEMA], }) export class HomeModule {}