mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 00:13:53 +00:00
6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
import { KeyboardEvent } from 'react';
|
|
|
|
export function isKeyEnter<T>(event: KeyboardEvent<T>): boolean {
|
|
return event.key === 'Enter';
|
|
}
|