mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
28 lines
866 B
TypeScript
28 lines
866 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
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 { BtnModalDismissPageModule } from 'src/app/shared/btn-modal-dismiss/btn-modal-dismiss.module';
|
|
/* import { ComponentsModule } from 'src/app/components/components.module'; */
|
|
/* import { TagCloudModule } from 'angular-tag-cloud-module'; */
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
/* TagCloudModule, */
|
|
/* ComponentsModule, */
|
|
SearchPageRoutingModule,
|
|
BtnModalDismissPageModule,
|
|
],
|
|
declarations: [SearchPage],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class SearchPageModule {}
|