Files
doneit-web/src/app/pages/search/search.module.ts
T

26 lines
731 B
TypeScript
Raw Normal View History

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';
/* import { ComponentsModule } from 'src/app/components/components.module'; */
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, */
/* 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 {}