(e: React.KeyboardEvent)
| 39 | }; |
| 40 | |
| 41 | const handleKeyPress = (e: React.KeyboardEvent) => { |
| 42 | if (e.key === 'Enter') { |
| 43 | handleAddUrl(); |
| 44 | } |
| 45 | }; |
| 46 | |
| 47 | return ( |
| 48 | <div className="h-full flex flex-col p-4"> |
nothing calls this directly
no test coverage detected