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

11 lines
227 B
TypeScript
Raw Normal View History

2023-03-31 07:26:10 -07:00
import { Stack } from '@mantine/core';
import { WindowHotkeySettings } from './window-hotkey-settings';
export const HotkeysTab = () => {
return (
<Stack spacing="md">
<WindowHotkeySettings />
</Stack>
);
};