(e: React.KeyboardEvent<HTMLInputElement>)
| 54 | } |
| 55 | |
| 56 | const handleKeyDown = (e: React.KeyboardEvent<HTMLInputElement>) => { |
| 57 | if (e.key === 'Enter') { |
| 58 | handleSubmit(value) |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | return ( |
| 63 | <div className="flex flex-col min-h-screen"> |
nothing calls this directly
no test coverage detected