const { inputRef = () => {}, ref, ...other } = inputProps
return (
<TextField
variant="outlined"
fullWidth
ref={nameRef}
InputProps={{
inputRef: (node) => {
ref(node)
inputRef(node)
},
endAdornment: (
<InputAdornment position="end">
<IconButton
edge="end"
onClick={handleClickAddSkill}
onKeyUp={handleClickAddSkill}
>
<PlusButton />
</IconButton>
</InputAdornment>
),
}}
{...other}
/>
)
}
подскажите, как здесь подписаться на onBlur?
<TextField onBlur={...} ... />?
Обсуждают сегодня