mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2025-11-16 01:21:16 +01:00
19 lines
533 B
TypeScript
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;
|