summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.module.ts
diff options
context:
space:
mode:
authorschencej <55326070+schencej@users.noreply.github.com>2019-12-10 17:30:39 -0500
committerGitHub <noreply@github.com>2019-12-10 17:30:39 -0500
commit3fd5630cae141bf49537537315d23bdbf92f8493 (patch)
treee2957affc5e2e1e5f07dffae09abf896974ff54d /recipeBuddy/src/app/app.module.ts
parent8de14b3da7ec0dad8b02f5ca7a0e336c78d22522 (diff)
parentd8e99623986708c7b64984f8bf638a9fbec4a3d2 (diff)
Merge pull request #20 from tuckerevans/edit-page
Add edit-recipe form/page
Diffstat (limited to 'recipeBuddy/src/app/app.module.ts')
-rw-r--r--recipeBuddy/src/app/app.module.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipeBuddy/src/app/app.module.ts b/recipeBuddy/src/app/app.module.ts
index 359254e..4acbaa6 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -5,7 +5,6 @@ import { MatCardModule } from '@angular/material';
import { AppComponent } from './app.component';
import { CookPageComponent} from './cook-page/cook-page.component';
-import { StepCardComponent } from './cook-page/step-card/step-card.component';
import { AppRoutingModule } from './app-routing.module';
@@ -19,13 +18,14 @@ import { MatInputModule } from '@angular/material/input';
import { MatFormFieldModule } from '@angular/material';
import { MatIconModule } from '@angular/material/icon';
import { MatButtonModule } from '@angular/material/button';
+import { EditRecipeComponent } from './edit-recipe/edit-recipe.component';
@NgModule({
declarations: [
AppComponent,
CookPageComponent,
- StepCardComponent,
- AddRecipeComponent
+ AddRecipeComponent,
+ EditRecipeComponent
],
imports: [
BrowserModule,