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';
|
2020-08-13 17:44:57 +01:00
|
|
|
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
2021-01-15 08:16:36 +01:00
|
|
|
import { TagCloudModule } from 'angular-tag-cloud-module';
|
2020-08-05 15:39:16 +01:00
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
|
imports: [
|
|
|
|
|
CommonModule,
|
|
|
|
|
FormsModule,
|
|
|
|
|
IonicModule,
|
2021-01-15 08:16:36 +01:00
|
|
|
TagCloudModule,
|
2020-08-13 17:44:57 +01:00
|
|
|
/* ComponentsModule, */
|
2020-08-05 15:39:16 +01:00
|
|
|
SearchPageRoutingModule
|
|
|
|
|
],
|
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 {}
|