(event: KeyboardEvent)
| 5 | } |
| 6 | |
| 7 | export function isKeyboardActivation(event: KeyboardEvent) { |
| 8 | return event.key === 'Enter' || event.key === ' ' |
| 9 | } |
| 10 | |
| 11 | export function handleKeyboardActivation( |
| 12 | event: KeyboardEvent, |
no outgoing calls
no test coverage detected