Files
feishin/src/renderer/features/settings/components/hotkeys/hotkeys-tab.tsx
T
Jeff c1330d92b2 Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

15 lines
516 B
TypeScript

import isElectron from 'is-electron';
import { HotkeyManagerSettings } from '/@/renderer/features/settings/components/hotkeys/hotkey-manager-settings';
import { WindowHotkeySettings } from '/@/renderer/features/settings/components/hotkeys/window-hotkey-settings';
import { Stack } from '/@/shared/components/stack/stack';
export const HotkeysTab = () => {
return (
<Stack gap="md">
{isElectron() && <WindowHotkeySettings />}
<HotkeyManagerSettings />
</Stack>
);
};