12 lines
323 B
TypeScript
12 lines
323 B
TypeScript
import { useGoToHotkeys } from '@/ui/utilities/hotkey/hooks/useGoToHotkeys';
|
|
|
|
export function GotoHotkeysHooks() {
|
|
useGoToHotkeys('p', '/people');
|
|
useGoToHotkeys('c', '/companies');
|
|
useGoToHotkeys('o', '/opportunities');
|
|
useGoToHotkeys('s', '/settings/profile');
|
|
useGoToHotkeys('t', '/tasks');
|
|
|
|
return <></>;
|
|
}
|