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 25 26 27 28 29 30 31 32 33 34 35 | 4x 4x 4x 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 { RouterModule } from '@angular/router'; import { TabsModule } from 'ngx-bootstrap/tabs'; import { TypeaheadModule } from 'ngx-bootstrap/typeahead'; import { SharedModule } from '../../shared/shared.module'; import { Nfs501Component } from './nfs-501/nfs-501.component'; import { NfsDetailsComponent } from './nfs-details/nfs-details.component'; import { NfsFormClientComponent } from './nfs-form-client/nfs-form-client.component'; import { NfsFormComponent } from './nfs-form/nfs-form.component'; import { NfsListComponent } from './nfs-list/nfs-list.component'; @NgModule({ imports: [ ReactiveFormsModule, RouterModule, SharedModule, TabsModule.forRoot(), CommonModule, TypeaheadModule.forRoot() ], declarations: [ NfsListComponent, NfsDetailsComponent, NfsFormComponent, NfsFormClientComponent, Nfs501Component ], exports: [Nfs501Component] }) export class NfsModule {} |