summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorChris Undercoffer <undercofferch18@gmail.com>2019-12-09 17:13:47 -0500
committerChris Undercoffer <undercofferch18@gmail.com>2019-12-09 17:13:47 -0500
commitd04ec02a64e85d13f04e8a5567d82ae2bcce3ff0 (patch)
treee5841b7fda2a49bf8875cbf17aefe4a44ef58131 /recipeBuddy/src/app/app-routing.module.ts
parentc3666978e0eef9eeb52d4e383a98d3ef075c37da (diff)
parent67b9f6678c6c588f231bce1f658adfe0e11321ab (diff)
Merge branch 'master' into shoppingcart
Diffstat (limited to 'recipeBuddy/src/app/app-routing.module.ts')
-rw-r--r--recipeBuddy/src/app/app-routing.module.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/app-routing.module.ts b/recipeBuddy/src/app/app-routing.module.ts
index a6e4399..bb7c96e 100644
--- a/recipeBuddy/src/app/app-routing.module.ts
+++ b/recipeBuddy/src/app/app-routing.module.ts
@@ -2,10 +2,12 @@ import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { CookPageComponent } from './cook-page/cook-page.component';
+import { AddRecipeComponent } from './add-recipe/add-recipe.component';
const routes: Routes = [
{ path: '', redirectTo: '/cook', pathMatch: 'full' },
- { path: 'cook', component: CookPageComponent }
+ { path: 'cook', component: CookPageComponent },
+ { path: 'add', component: AddRecipeComponent }
];
@NgModule({