Files
twenty/packages/twenty-front/src/effect-components/GotoHotkeysEffect.tsx
2023-12-10 18:10:54 +01:00

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 <></>;
};