2024-05-05 13:25:05 -07:00
|
|
|
import { Stack } from '@mantine/core';
|
2023-09-22 17:52:00 -07:00
|
|
|
import isElectron from 'is-electron';
|
2025-05-18 14:03:18 -07:00
|
|
|
|
2023-05-13 00:58:32 -07:00
|
|
|
import { HotkeyManagerSettings } from '/@/renderer/features/settings/components/hotkeys/hotkey-manager-settings';
|
2025-05-20 19:23:36 -07:00
|
|
|
import { WindowHotkeySettings } from '/@/renderer/features/settings/components/hotkeys/window-hotkey-settings';
|
2023-03-31 07:26:10 -07:00
|
|
|
|
|
|
|
|
export const HotkeysTab = () => {
|
2023-07-01 19:10:05 -07:00
|
|
|
return (
|
|
|
|
|
<Stack spacing="md">
|
2024-05-05 13:25:05 -07:00
|
|
|
{isElectron() && <WindowHotkeySettings />}
|
2023-07-01 19:10:05 -07:00
|
|
|
<HotkeyManagerSettings />
|
|
|
|
|
</Stack>
|
|
|
|
|
);
|
2023-03-31 07:26:10 -07:00
|
|
|
};
|