This repository has been archived on 2025-03-19. You can view files and clone it, but cannot push or open issues or pull requests.
feishin/src/renderer/features/settings/components/hotkeys/hotkeys-tab.tsx
2023-03-31 07:26:10 -07:00

10 lines
227 B
TypeScript

import { Stack } from '@mantine/core';
import { WindowHotkeySettings } from './window-hotkey-settings';
export const HotkeysTab = () => {
return (
<Stack spacing="md">
<WindowHotkeySettings />
</Stack>
);
};