feishin/src/renderer/features/settings/components/window/window-tab.tsx

11 lines
207 B
TypeScript
Raw Normal View History

2023-03-30 06:44:33 -07:00
import { Stack } from '@mantine/core';
import { WindowSettings } from './window-settings';
export const WindowTab = () => {
return (
<Stack spacing="md">
<WindowSettings />
</Stack>
);
};