Preparing search index...
    type NutritionRowProps = {
        label: string;
        value: number;
        unit: string;
        isSubItem?: boolean;
        isEditable?: boolean;
        field?: keyof nutritionTableElement;
        onValueChange?: (field: keyof nutritionTableElement, value: number) => void;
        testId: string;
    }
    Index

    Properties

    label: string
    value: number
    unit: string
    isSubItem?: boolean
    isEditable?: boolean
    field?: keyof nutritionTableElement
    onValueChange?: (field: keyof nutritionTableElement, value: number) => void
    testId: string