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