UNPKG

@kadconsulting/dry

Version:
10 lines (9 loc) 309 B
/// <reference types="react" /> export interface EditableFieldProps extends React.HTMLAttributes<HTMLElement> { passProps?: object; /** Support @testing-library/react `screen.getByTestId` */ 'data-testid'?: string; label: string; value: string; onUpdate: (newValue: string) => void; }