mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
21 lines
507 B
TypeScript
21 lines
507 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import { IonicModule } from '@ionic/angular';
|
|
|
|
import { AttachmentsPageRoutingModule } from './attachments-routing.module';
|
|
|
|
import { AttachmentsPage } from './attachments.page';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonicModule,
|
|
AttachmentsPageRoutingModule
|
|
],
|
|
declarations: [AttachmentsPage]
|
|
})
|
|
export class AttachmentsPageModule {}
|