Files
feishin/src/shared/hooks/use-hotkeys.ts
T

9 lines
204 B
TypeScript

import {
type HotkeyItem as MantineHotkeyItem,
useHotkeys as useMantineHotkeys,
} from '@mantine/hooks';
export const useHotkeys = useMantineHotkeys;
export type HotkeyItem = MantineHotkeyItem;