jp-search.module.ts 440 B

123456789101112131415161718
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { JpSearchRoutingModule } from './jp-search-routing.module';
  4. import { ShareModule } from 'src/app/share/share.module';
  5. import { JpSearchComponent } from './jp-search.component';
  6. @NgModule({
  7. declarations: [JpSearchComponent],
  8. imports: [
  9. CommonModule,
  10. JpSearchRoutingModule,
  11. ShareModule
  12. ]
  13. })
  14. export class JpSearchModule { }