Preparing search index...

    Props for the RecipeSelectionCard component

    type RecipeSelectionCardProps = {
        testId: string;
        recipe: DiscoveredRecipe;
        isSelected: boolean;
        onSelected: () => void;
        onUnselected: () => void;
    }
    Index

    Properties

    testId: string

    Unique identifier for testing

    Recipe data to display

    isSelected: boolean

    Whether the recipe is currently selected

    onSelected: () => void

    Callback invoked when the recipe is selected

    onUnselected: () => void

    Callback invoked when the recipe is unselected