(event: React.FormEvent<HTMLFormElement>)
| 167 | } |
| 168 | |
| 169 | function handleReset(event: React.FormEvent<HTMLFormElement>) { |
| 170 | event.preventDefault(); |
| 171 | event.stopPropagation(); |
| 172 | |
| 173 | onReset(event); |
| 174 | |
| 175 | if (inputRef.current) { |
| 176 | inputRef.current.focus(); |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | return ( |
| 181 | <div |