UNPKG

tns-template-drawer-navigation-ng

Version:
25 lines (22 loc) 627 B
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core"; import { NativeScriptModule } from "nativescript-angular/nativescript.module"; import { NativeScriptUISideDrawerModule } from "nativescript-ui-sidedrawer/angular"; import { AppRoutingModule } from "./app-routing.module"; import { AppComponent } from "./app.component"; @NgModule({ bootstrap: [ AppComponent ], imports: [ AppRoutingModule, NativeScriptModule, NativeScriptUISideDrawerModule ], declarations: [ AppComponent ], schemas: [ NO_ERRORS_SCHEMA ] }) export class AppModule { }