modules/search-bar-component/src/search-bar.module.ts
Search bar for searching products by name
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { SearchBarComponent } from './search-bar.component';
import {ProductServiceModule} from '@nodeart/productservice/index';
/**
* Search bar for searching products by name
*/
@NgModule({
imports: [ProductServiceModule, CommonModule],
exports: [SearchBarComponent],
declarations: [SearchBarComponent],
providers: [],
})
export class SearchBarModule { }