summaryrefslogtreecommitdiff
path: root/recipeBuddy/src/app/app.module.ts
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-12-02 16:34:48 -0500
committerGitHub <noreply@github.com>2019-12-02 16:34:48 -0500
commitd854dedd5297aaa7901fc2b2b304c8b160830836 (patch)
tree77bddb3f84607c5036807552e59090bac6a60f74 /recipeBuddy/src/app/app.module.ts
parent6f14fcb0a4692c54b76ea96fc2bc0a683af30838 (diff)
parente31ace84fbd37623b3863d8959818d7d70129c87 (diff)
Merge pull request #10 from tuckerevans/elim
Elim
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]