UNPKG

@c8y/apps

Version:

Cumulocity IoT applications

18 lines (16 loc) 710 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { RightDrawerTutorialComponent } from './right-drawer-tutorial/right-drawer-tutorial.component'; import { LeftDrawerTutorialComponent } from './left-drawer-tutorial/left-drawer-tutorial.component'; import { hookDrawer } from '@c8y/ngx-components'; @NgModule({ imports: [CommonModule], declarations: [RightDrawerTutorialComponent, LeftDrawerTutorialComponent], providers: [ hookDrawer([ { component: RightDrawerTutorialComponent, position: 'right', priority: 20 }, { component: LeftDrawerTutorialComponent, position: 'left', priority: 10 } ]) ] }) export class DrawerTutorialModule {}