2021-01-29 11:28:26 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { HeaderNoSearchPageRoutingModule } from './header-no-search-routing.module';
|
|
|
|
|
|
|
|
|
|
import { HeaderNoSearchPage } from './header-no-search.page';
|
|
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
|
|
|
|
HeaderNoSearchPageRoutingModule
|
|
|
|
|
],
|
2021-06-03 11:31:19 +01:00
|
|
|
exports: [HeaderNoSearchPage],
|
|
|
|
|
declarations: [HeaderNoSearchPage]
|
2021-01-29 11:28:26 +01:00
|
|
|
})
|
|
|
|
|
export class HeaderNoSearchPageModule {}
|