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 f657163..fd2059c 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -1,14 +1,24 @@
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 { 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
+ AppComponent,
+ CookPageComponent,
+ StepCardComponent
],
imports: [
- BrowserModule
+ BrowserModule,
+ AppRoutingModule,
+ MatCardModule,
],
providers: [],
bootstrap: [AppComponent]