pathology-communication-book.module.ts 647 B

12345678910111213141516171819
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { PathologyCommunicationBookRoutingModule } from './pathology-communication-book-routing.module';
  4. import { ShareModule } from 'src/app/share/share.module';
  5. import { PathologyCommunicationBookComponent } from './pathology-communication-book.component';
  6. import { DragModule } from 'src/app/directives/drag/drag.module';
  7. @NgModule({
  8. declarations: [PathologyCommunicationBookComponent],
  9. imports: [
  10. DragModule,
  11. CommonModule,
  12. PathologyCommunicationBookRoutingModule,
  13. ShareModule
  14. ]
  15. })
  16. export class PathologyCommunicationBookModule { }