feature: add onFocus event handler in input component

This commit is contained in:
George Lima 2019-01-07 15:06:57 -03:00
parent 4f93b392d3
commit 6c1a64efc1
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ type Props = {
inputType?: 'input' | 'textarea',
value: string,
onChange: string => void,
onFocus?: (SyntheticFocusEvent<HTMLInputElement>) => void,
rows?: number,
disabled?: boolean,
type?: string,