mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 19:21:39 +00:00
13 lines
403 B
TypeScript
13 lines
403 B
TypeScript
import { Divider, Stack } from '@mantine/core';
|
|
import { UpdateSettings } from '/@/renderer/features/settings/components/window/update-settings';
|
|
import { WindowSettings } from '/@/renderer/features/settings/components/window/window-settings';
|
|
|
|
export const WindowTab = () => {
|
|
return (
|
|
<Stack spacing="md">
|
|
<WindowSettings />
|
|
<Divider />
|
|
<UpdateSettings />
|
|
</Stack>
|
|
);
|
|
};
|