mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
23 lines
577 B
TypeScript
23 lines
577 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 { FeedPageRoutingModule } from './feed-routing.module';
|
|
|
|
import { FeedPage } from './feed.page';
|
|
import { ComponentsModule } from 'src/app/components/components.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
ComponentsModule,
|
|
FeedPageRoutingModule
|
|
],
|
|
declarations: [FeedPage]
|
|
})
|
|
export class FeedPageModule {}
|