Stirling-PDF/frontend/src/desktop/components/shared/config/configSections/GeneralSection.tsx
2025-11-14 12:02:28 +00:00

19 lines
533 B
TypeScript

import React from 'react';
import { Stack } from '@mantine/core';
import CoreGeneralSection from '@core/components/shared/config/configSections/GeneralSection';
import { DefaultAppSettings } from '@app/components/shared/config/configSections/DefaultAppSettings';
/**
* Desktop extension of GeneralSection that adds default PDF editor settings
*/
const GeneralSection: React.FC = () => {
return (
<Stack gap="lg">
<CoreGeneralSection />
<DefaultAppSettings />
</Stack>
);
};
export default GeneralSection;