mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 20:40:21 +02:00
13 lines
419 B
TypeScript
13 lines
419 B
TypeScript
import { StylesSettings } from '/@/renderer/features/settings/components/advanced/styles-settings';
|
|
import { UpdateSettings } from '/@/renderer/features/settings/components/window/update-settings';
|
|
import { Stack } from '/@/shared/components/stack/stack';
|
|
|
|
export const AdvancedTab = () => {
|
|
return (
|
|
<Stack gap="md">
|
|
<UpdateSettings />
|
|
<StylesSettings />
|
|
</Stack>
|
|
);
|
|
};
|