mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
26 lines
719 B
TypeScript
26 lines
719 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 { ComponentsModule } from 'src/app/components/components.module'; */
|
|
import { TagCloudModule } from 'angular-tag-cloud-module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
TagCloudModule,
|
|
/* ComponentsModule, */
|
|
SearchPageRoutingModule
|
|
],
|
|
declarations: [SearchPage],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class SearchPageModule {}
|