mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-17 06:00:20 +02:00
c1330d92b2
* mantine v8 migration * various design changes and improvements
15 lines
516 B
TypeScript
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>
|
|
);
|
|
};
|