incident-ser-call.module.ts 552 B

1234567891011121314151617181920212223
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { IncidentSerCallComponent } from './incident-ser-call.component';
  4. import { ShareModule } from 'src/app/share/share.module';
  5. import { IncidentRecordingModule } from '../incident-recording/incident-recording.module';
  6. @NgModule({
  7. declarations: [
  8. IncidentSerCallComponent,
  9. ],
  10. imports: [
  11. CommonModule,
  12. ShareModule,
  13. IncidentRecordingModule,
  14. ],
  15. exports: [
  16. IncidentSerCallComponent,
  17. ]
  18. })
  19. export class IncidentSerCallModule { }