✨(react) react-hook-form Select example
Our form elements needs to be usable with react-hook-form
This commit is contained in:
@@ -23,6 +23,9 @@ export type SelectProps = PropsWithChildren &
|
||||
onChange?: (event: {
|
||||
target: { value: string | number | undefined | string[] };
|
||||
}) => void;
|
||||
onBlur?: (event: {
|
||||
target: { value: string | number | undefined | string[] };
|
||||
}) => void;
|
||||
disabled?: boolean;
|
||||
clearable?: boolean;
|
||||
multi?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user