mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
11 lines
227 B
TypeScript
11 lines
227 B
TypeScript
|
|
import { Stack } from '@mantine/core';
|
||
|
|
import { WindowHotkeySettings } from './window-hotkey-settings';
|
||
|
|
|
||
|
|
export const HotkeysTab = () => {
|
||
|
|
return (
|
||
|
|
<Stack spacing="md">
|
||
|
|
<WindowHotkeySettings />
|
||
|
|
</Stack>
|
||
|
|
);
|
||
|
|
};
|