mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
21 lines
530 B
TypeScript
21 lines
530 B
TypeScript
|
|
import { NgModule } from '@angular/core';
|
||
|
|
import { CommonModule } from '@angular/common';
|
||
|
|
import { FormsModule } from '@angular/forms';
|
||
|
|
|
||
|
|
import { IonicModule } from '@ionic/angular';
|
||
|
|
|
||
|
|
import { ActionsOptionsPageRoutingModule } from './actions-options-routing.module';
|
||
|
|
|
||
|
|
import { ActionsOptionsPage } from './actions-options.page';
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [
|
||
|
|
CommonModule,
|
||
|
|
FormsModule,
|
||
|
|
IonicModule,
|
||
|
|
ActionsOptionsPageRoutingModule
|
||
|
|
],
|
||
|
|
declarations: [ActionsOptionsPage]
|
||
|
|
})
|
||
|
|
export class ActionsOptionsPageModule {}
|