You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
664 B
13 lines
664 B
2 years ago
|
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 {}
|