* Working version * fix * Fixed console log * Fix lint * wip * Fix * Fix * consolelog --------- Co-authored-by: Charles Bochet <charles@twenty.com>
11 lines
278 B
TypeScript
11 lines
278 B
TypeScript
import { useGoToHotkeys } from '@/hotkeys/hooks/useGoToHotkeys';
|
|
|
|
export function GotoHotkeysHooks() {
|
|
useGoToHotkeys('p', '/people');
|
|
useGoToHotkeys('c', '/companies');
|
|
useGoToHotkeys('o', '/opportunities');
|
|
useGoToHotkeys('s', '/settings/profile');
|
|
|
|
return <></>;
|
|
}
|