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