mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
17 lines
563 B
TypeScript
17 lines
563 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 { ThemeSettings } from '/@/renderer/features/settings/components/general/theme-settings';
|
|
|
|
export const GeneralTab = () => {
|
|
return (
|
|
<Stack spacing="md">
|
|
<ApplicationSettings />
|
|
<Divider />
|
|
<ThemeSettings />
|
|
<Divider />
|
|
<ControlSettings />
|
|
</Stack>
|
|
);
|
|
};
|