This commit is contained in:
Peter Maquiran
2021-08-18 12:05:27 +01:00
parent 53d6896abf
commit 1fbb308831
55 changed files with 1212 additions and 1206 deletions
@@ -0,0 +1,21 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { TaskListPageRoutingModule } from './task-list-routing.module';
import { TaskListPage } from './task-list.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
TaskListPageRoutingModule
],
declarations: [TaskListPage],
exports: [TaskListPage]
})
export class TaskListPageModule {}