import { NgModule } from "@angular/core"; import { SharedModule } from "@cdk/shared/shared.module"; import { AddDishToIngredientComponent } from "./add-dish-to-ingredient/add-dish-to-ingredient.component"; import { IngredientMealsComponent } from "./ingredient-meals/ingredient-meals.component"; import { ConfirmIngredientComponent } from "./confirm-ingredient/confirm-ingredient.component"; @NgModule({ declarations: [AddDishToIngredientComponent, IngredientMealsComponent, ConfirmIngredientComponent], imports: [SharedModule], exports: [AddDishToIngredientComponent, IngredientMealsComponent, ConfirmIngredientComponent], }) export class IngredientModule {}