-add header with no search funcionality

- change header in home and chat
This commit is contained in:
tiago.kayaya
2021-01-29 11:28:26 +01:00
parent 076b614488
commit ba5baf3fe8
12 changed files with 202 additions and 24 deletions
@@ -0,0 +1,20 @@
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
],
declarations: [HeaderNoSearchPage]
})
export class HeaderNoSearchPageModule {}