2020-08-11 04:11:42 +01:00
|
|
|
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
2020-08-05 15:39:16 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
|
|
|
|
|
|
import { SearchPageRoutingModule } from './search-routing.module';
|
|
|
|
|
|
|
|
|
|
import { SearchPage } from './search.page';
|
2021-06-10 15:38:08 +01:00
|
|
|
import { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
2021-07-28 09:29:14 +01:00
|
|
|
/* */
|
2021-01-22 16:39:32 +01:00
|
|
|
/* import { TagCloudModule } from 'angular-tag-cloud-module'; */
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-01-22 16:39:32 +01:00
|
|
|
/* TagCloudModule, */
|
2021-07-28 09:29:14 +01:00
|
|
|
/* */
|
2021-06-10 15:38:08 +01:00
|
|
|
SearchPageRoutingModule,
|
|
|
|
|
BtnModalDismissPageModule,
|
2020-08-05 15:39:16 +01:00
|
|
|
],
|
2020-08-11 04:11:42 +01:00
|
|
|
declarations: [SearchPage],
|
|
|
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
2020-08-05 15:39:16 +01:00
|
|
|
})
|
|
|
|
|
export class SearchPageModule {}
|