// Ingredients export const ADD_INGREDIENT = "ADD_INGREDIENT"; export const REMOVE_INGREDIENT = "REMOVE_INGREDIENT"; export const SET_INGREDIENT_INPUT_VALUE = "SET_INGREDIENT_INPUT_VALUE"; export const SET_SELECTED_INGREDIENT = "SET_SELECTED_INGREDIENT"; export const SET_OPTIONAL = "SET_OPTIONAL"; export const INGREDIENTS_REDUCER = "INGREDIENTS_REDUCER"; export const PREPARING_REDUCER = "PREPARING_REDUCER"; // Dish Info export const SET_INPUT_VALUE = "SET_INPUT_VALUE"; export const DISH_INFO_NAME_INPUT = "name"; export const DISH_INFO_INTERNAL_NAME_INPUT = "nameInternal"; export const DISH_INFO_DESCRIPTION_INPUT = "description";