Preparing search index...

    React state setters for all recipe form fields

    interface RecipeFormSetters {
        setRecipeImage: Dispatch<SetStateAction<string>>;
        setRecipeTitle: Dispatch<SetStateAction<string>>;
        setRecipeDescription: Dispatch<SetStateAction<string>>;
        setRecipeTags: Dispatch<SetStateAction<tagTableElement[]>>;
        setRecipePersons: Dispatch<SetStateAction<number>>;
        setRecipeIngredients: Dispatch<
            SetStateAction<
                (ingredientTableElement | Partial<ingredientTableElement>)[],
            >,
        >;
        setRecipePreparation: Dispatch<SetStateAction<preparationStepElement[]>>;
        setRecipeTime: Dispatch<SetStateAction<number>>;
        setRecipeNutrition: Dispatch<
            SetStateAction<undefined | nutritionTableElement>,
        >;
        setStackMode: Dispatch<SetStateAction<recipeStateType>>;
        setImgForOCR: Dispatch<SetStateAction<string[]>>;
    }
    Index

    Properties

    setRecipeImage: Dispatch<SetStateAction<string>>
    setRecipeTitle: Dispatch<SetStateAction<string>>
    setRecipeDescription: Dispatch<SetStateAction<string>>
    setRecipeTags: Dispatch<SetStateAction<tagTableElement[]>>
    setRecipePersons: Dispatch<SetStateAction<number>>
    setRecipeIngredients: Dispatch<
        SetStateAction<
            (ingredientTableElement | Partial<ingredientTableElement>)[],
        >,
    >
    setRecipePreparation: Dispatch<SetStateAction<preparationStepElement[]>>
    setRecipeTime: Dispatch<SetStateAction<number>>
    setRecipeNutrition: Dispatch<SetStateAction<undefined | nutritionTableElement>>
    setStackMode: Dispatch<SetStateAction<recipeStateType>>
    setImgForOCR: Dispatch<SetStateAction<string[]>>