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.ts6
1 files changed, 5 insertions, 1 deletions
diff --git a/recipeBuddy/src/app/app.module.ts b/recipeBuddy/src/app/app.module.ts
index 76fbc66..4356d48 100644
--- a/recipeBuddy/src/app/app.module.ts
+++ b/recipeBuddy/src/app/app.module.ts
@@ -3,10 +3,12 @@ import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { MatCardModule } from '@angular/material';
import { MatDialogModule } from '@angular/material';
+import { ScrollingModule } from '@angular/cdk/scrolling';
import { AppComponent } from './app.component';
import { CookPageComponent} from './cook-page/cook-page.component';
import { ShoppingCartComponent } from './shopping-cart/shopping-cart.component';
+import { RecipeCardComponent } from './recipe-card/recipe-card.component';
import { AppRoutingModule } from './app-routing.module';
@@ -33,9 +35,11 @@ import { MatDividerModule } from '@angular/material/divider';
PreCookPopUpComponent,
AddRecipeComponent,
EditRecipeComponent,
- ShoppingCartComponent
+ ShoppingCartComponent,
+ RecipeCardComponent
],
imports: [
+ ScrollingModule,
BrowserModule,
AppRoutingModule,
MatCardModule,