interface WithEditButtonProps {
    disabled: boolean;
    onEdit: () => void;
}

Properties

Properties

disabled: boolean
onEdit: () => void