summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app-routing.module.ts
diff options
context:
space:
mode:
authorchrisundercoffer <55003067+chrisundercoffer@users.noreply.github.com>2019-12-09 17:08:51 -0500
committerGitHub <noreply@github.com>2019-12-09 17:08:51 -0500
commit67b9f6678c6c588f231bce1f658adfe0e11321ab (patch)
treebc42a10b22ef6402bdbb41794eee584a56737920 /recipeBuddy/src/app/app-routing.module.ts
parent5cf3689290666f70cd631d7b3d40a2ed245a3fce (diff)
parent2a46419961ab4db50146434945a57859893f8d54 (diff)
Merge pull request #14 from tuckerevans/add_page
Add Recipe Page
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({