mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-15 13:00:25 +02:00
15 lines
501 B
TypeScript
15 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>
|
|
);
|
|
};
|