import { KeyboardEvent } from 'react'; export function isKeyEnter(event: KeyboardEvent): boolean { return event.key === 'Enter'; }