Improve search page

This commit is contained in:
Peter Maquiran
2021-01-16 17:45:09 +01:00
parent cde236d4ca
commit 8c4fea8c92
11 changed files with 176 additions and 45 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 { SenderPageRoutingModule } from './sender-routing.module';
import { SenderPage } from './sender.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
SenderPageRoutingModule
],
declarations: [SenderPage]
})
export class SenderPageModule {}