projecte_ionic_entrega_01/src/app/pages/list/list.module.ts
2021-12-01 18:35:44 +01:00

21 lines
458 B
TypeScript

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { ListPageRoutingModule } from './list-routing.module';
import { ListPage } from './list.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
ListPageRoutingModule
],
declarations: [ListPage]
})
export class ListPageModule {}