UNPKG

tns-template-master-detail-progress-ng

Version:

Master-detail interface to display tables from a Progress backend and inspect and edit selected records.

24 lines (21 loc) 648 B
import { NgModule, NO_ERRORS_SCHEMA } from "@angular/core"; import { NativeScriptCommonModule } from "nativescript-angular/common"; import { NativeScriptUISideDrawerModule } from "nativescript-ui-sidedrawer/angular"; import { SideDrawerComponent } from "./side-drawer/side-drawer.component"; @NgModule({ imports: [ NativeScriptCommonModule, NativeScriptUISideDrawerModule ], declarations: [ SideDrawerComponent ], exports: [ SideDrawerComponent, NativeScriptUISideDrawerModule ], schemas: [ NO_ERRORS_SCHEMA ] }) export class SharedModule { }