mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-02 02:43:33 +00:00
10 lines
227 B
TypeScript
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>
|
|
);
|
|
};
|