Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x | import { CommonModule } from '@angular/common'; import { NgModule } from '@angular/core'; import { ReactiveFormsModule } from '@angular/forms'; import { TabsModule } from 'ngx-bootstrap/tabs'; import { AppRoutingModule } from '../../../app-routing.module'; import { SharedModule } from '../../../shared/shared.module'; import { MgrModuleDetailsComponent } from './mgr-module-details/mgr-module-details.component'; import { MgrModuleFormComponent } from './mgr-module-form/mgr-module-form.component'; import { MgrModuleListComponent } from './mgr-module-list/mgr-module-list.component'; @NgModule({ imports: [ AppRoutingModule, CommonModule, ReactiveFormsModule, SharedModule, TabsModule.forRoot() ], declarations: [MgrModuleListComponent, MgrModuleFormComponent, MgrModuleDetailsComponent] }) export class MgrModulesModule {} |