import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { IonicModule } from '@ionic/angular'; import { ExpedientsPageRoutingModule } from './expedients-routing.module'; import { ExpedientsPage } from './expedients.page'; @NgModule({ imports: [ CommonModule, FormsModule, IonicModule, ExpedientsPageRoutingModule ], exports: [ExpedientsPage], declarations: [ExpedientsPage] }) export class ExpedientsPageModule {}