mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
refs. https://github.com/TryGhost/Product/issues/3601 - added tableCell hover pointer cursor - updated Stripe connect button copy - added bottom margin to main container for better scrolling / navigation highlighting
22 lines
730 B
TypeScript
22 lines
730 B
TypeScript
import React from 'react';
|
|
|
|
import EmailSettings from './settings/email/EmailSettings';
|
|
import GeneralSettings from './settings/general/GeneralSettings';
|
|
import MembershipSettings from './settings/membership/MembershipSettings';
|
|
import SiteSettings from './settings/site/SiteSettings';
|
|
|
|
const Settings: React.FC = () => {
|
|
return (
|
|
<div className='mb-[40vh]'>
|
|
<GeneralSettings />
|
|
<SiteSettings />
|
|
<MembershipSettings />
|
|
<EmailSettings />
|
|
<div className='mt-40 text-sm'>
|
|
<a className='text-green' href="/ghost/#/settings">Click here</a> to open the original Admin settings.
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Settings;
|