react-validation
react-validation copied to clipboard
No error class on select
There is no error class on the select element.. suggested fix:
const Select = ({ error, isChanged, isUsed, ...props }) => (
{isChanged && isUsed && error}
);
Please advise?