123456789101112131415161718 |
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { JpSearchRoutingModule } from './jp-search-routing.module';
- import { ShareModule } from 'src/app/share/share.module';
- import { JpSearchComponent } from './jp-search.component';
- @NgModule({
- declarations: [JpSearchComponent],
- imports: [
- CommonModule,
- JpSearchRoutingModule,
- ShareModule
- ]
- })
- export class JpSearchModule { }
|