Add hotkey settings tab

This commit is contained in:
jeffvli 2023-03-31 07:26:10 -07:00
parent 0d9224bc09
commit f35152a169
5 changed files with 74 additions and 32 deletions

View file

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