summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'recipeBuddy/src/app/app.module.ts')
-rw-r--r--recipeBuddy/src/app/app.module.ts14
1 files changed, 12 insertions, 2 deletions
diff --git a/recipeBuddy/src/app/app.module.ts b/recipeBuddy/src/app/app.module.ts
index 8467740..3dd0f53 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -1,18 +1,28 @@
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
+import { FormsModule } from '@angular/forms';
+import { MatCardModule } from '@angular/material';
import { AppComponent } from './app.component';
import { MainPageComponent } from './main-page/main-page.component';
import { RecipeCardComponent } from './recipe-card/recipe-card.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';
@NgModule({
declarations: [
AppComponent,
MainPageComponent,
- RecipeCardComponent
+ RecipeCardComponent,
+ CookPageComponent,
+ StepCardComponent
],
imports: [
- BrowserModule
+ BrowserModule,
+ AppRoutingModule,
+ MatCardModule,
],
providers: [],
bootstrap: [AppComponent]