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>
|
|
);
|
|
};
|