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,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { AddNotePage } from './add-note.page';
const routes: Routes = [
{
path: '',
component: AddNotePage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class AddNotePageRoutingModule {}