feishin/src/renderer/features/settings/components/hotkeys/hotkeys-tab.tsx

14 lines
430 B
TypeScript
Raw Normal View History

import { Divider, Stack } from '@mantine/core';
2023-03-31 07:26:10 -07:00
import { WindowHotkeySettings } from './window-hotkey-settings';
import { HotkeyManagerSettings } from '/@/renderer/features/settings/components/hotkeys/hotkey-manager-settings';
2023-03-31 07:26:10 -07:00
export const HotkeysTab = () => {
2023-07-01 19:10:05 -07:00
return (
<Stack spacing="md">
<WindowHotkeySettings />
<Divider />
<HotkeyManagerSettings />
</Stack>
);
2023-03-31 07:26:10 -07:00
};