Files
allowance_planner_2000/frontend/allowance-planner-v2/src/app/pages/add-allowance/spend-allowance-routing.module.ts
Huffle 8c2af22c85
All checks were successful
Backend Deploy / build (push) Successful in 20s
Backend Build and Test / build (push) Successful in 2m33s
Add functionality to add allowance (#101)
closes #69
closes #107

Reviewed-on: #101
2025-05-27 18:39:51 +02:00

17 lines
393 B
TypeScript

import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SpendllowancePage } from './spend-allowance.page';
const routes: Routes = [
{
path: '',
component: SpendllowancePage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class SpendAllowancePageRoutingModule {}