Files
outline/app/components/RegisterKeyDown.ts
Tom Moor 5abc73fabc fix: Editor shortcut conflicts (#2943)
* fix: ctrl+n shortcut conflicts

* Update kbar with fix for ctrl-k on macOS
2022-01-15 17:47:53 -08:00

18 lines
518 B
TypeScript

import useKeyDown, { KeyFilter, Options } from "~/hooks/useKeyDown";
type Props = {
trigger: KeyFilter;
handler: (event: KeyboardEvent) => void;
options?: Options;
};
/**
* This method is a wrapper around the useKeyDown hook to allow easier use in
* class components that have not yet been converted to functions. Do not use
* this method in functional components.
*/
export default function RegisterKeyDown({ trigger, handler, options }: Props) {
useKeyDown(trigger, handler, options);
return null;
}