When I render the input element when using Downshift, is it wrong to do
<input {...getInputProps({...this.props})} />
or should I be more specific in which attributes are passed in the object to getInputProps?
{...getInputProps({placeholder: this.props.placeholder})}
The later would not then let me add other attributes (e.g. data-testid:controlName
) without changing my source control to specifically look for it