UNPKG

tns-template-drawer-navigation-ng

Version:
20 lines (17 loc) 491 B
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core"; import { NativeScriptCommonModule } from "nativescript-angular/common"; import { FeaturedRoutingModule } from "./featured-routing.module"; import { FeaturedComponent } from "./featured.component"; @NgModule({ imports: [ NativeScriptCommonModule, FeaturedRoutingModule ], declarations: [ FeaturedComponent ], schemas: [ NO_ERRORS_SCHEMA ] }) export class FeaturedModule { }