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.
26 lines
993 B
26 lines
993 B
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";
|
|
import { IngredientDishComponent } from "./ingredient-dish/ingredient-dish.component";
|
|
import { IngredientFormBasicComponent } from "./ingredient-form-basic/ingredient-form-basic.component";
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
AddDishToIngredientComponent,
|
|
IngredientMealsComponent,
|
|
ConfirmIngredientComponent,
|
|
IngredientFormBasicComponent,
|
|
IngredientDishComponent,
|
|
],
|
|
imports: [SharedModule],
|
|
exports: [
|
|
AddDishToIngredientComponent,
|
|
IngredientMealsComponent,
|
|
ConfirmIngredientComponent,
|
|
IngredientFormBasicComponent,
|
|
IngredientDishComponent,
|
|
],
|
|
})
|
|
export class IngredientModule {}
|
|
|