summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-10 19:56:34 -0500
committerGitHub <noreply@github.com>2019-12-10 19:56:34 -0500
commitf8032f3efd65bf4b040b35bb25232616d94eabde (patch)
tree291e0cb67b0598a59da1976cadfaf5e900ae7de6 /recipeBuddy/src/app/app-routing.module.ts
parent3b8dd74dcb2be88630099772e0902e1dfbcde92c (diff)
parent556fb4672019b6af56794998d6435f68e1c59368 (diff)
Merge pull request #22 from tuckerevans/elim
Elim
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 9620f04..0084f01 100644
--- a/recipeBuddy/src/app/app-routing.module.ts
+++ b/recipeBuddy/src/app/app-routing.module.ts
@@ -2,13 +2,15 @@ import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { CookPageComponent } from './cook-page/cook-page.component';
+import { PreCookPopUpComponent } from './pre-cook-pop-up/pre-cook-pop-up.component';
import { AddRecipeComponent } from './add-recipe/add-recipe.component';
import { EditRecipeComponent } from './edit-recipe/edit-recipe.component';
const routes: Routes = [
{ path: '', redirectTo: '/cook', pathMatch: 'full' },
- { path: 'cook', component: CookPageComponent },
+ { path: 'preCook' , component: PreCookPopUpComponent },
{ path: 'add', component: AddRecipeComponent },
+ { path: 'cook', component: CookPageComponent },
{ path: 'edit', component: EditRecipeComponent },
];