mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 02:13:33 +00:00
19 lines
762 B
TypeScript
19 lines
762 B
TypeScript
import { Divider, Stack } from '@mantine/core';
|
|
import { ApplicationSettings } from '/@/renderer/features/settings/components/general/application-settings';
|
|
import { ControlSettings } from '/@/renderer/features/settings/components/general/control-settings';
|
|
import { SidebarSettings } from '/@/renderer/features/settings/components/general/sidebar-settings';
|
|
import { ThemeSettings } from '/@/renderer/features/settings/components/general/theme-settings';
|
|
|
|
export const GeneralTab = () => {
|
|
return (
|
|
<Stack spacing="md">
|
|
<ApplicationSettings />
|
|
<Divider />
|
|
<ThemeSettings />
|
|
<Divider />
|
|
<ControlSettings />
|
|
<Divider />
|
|
<SidebarSettings />
|
|
</Stack>
|
|
);
|
|
};
|