mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
14 lines
501 B
TypeScript
14 lines
501 B
TypeScript
import { Stack } from '@mantine/core';
|
|
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';
|
|
|
|
export const HotkeysTab = () => {
|
|
return (
|
|
<Stack spacing="md">
|
|
{isElectron() && <WindowHotkeySettings />}
|
|
<HotkeyManagerSettings />
|
|
</Stack>
|
|
);
|
|
};
|