This commit is contained in:
tiago.kayaya
2021-05-03 20:02:07 +01:00
parent 99964f201d
commit 97e60d6d13
10 changed files with 186 additions and 4 deletions
@@ -0,0 +1,20 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { AddNotePageRoutingModule } from './add-note-routing.module';
import { AddNotePage } from './add-note.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
AddNotePageRoutingModule
],
declarations: [AddNotePage]
})
export class AddNotePageModule {}