File size: 773 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
import { useTranslate } from 'i18n-calypso';
import InlineSupportLink from 'calypso/components/inline-support-link';
import NavigationHeader from 'calypso/components/navigation-header';
import { Panel } from 'calypso/components/panel';
import CachingForm from './form';
export default function PerformanceSettings() {
const translate = useTranslate();
return (
<Panel className="settings-performance">
<NavigationHeader
title={ translate( 'Performance' ) }
subtitle={ translate(
'Manage your site’s performance, including server-side caching. {{a}}Learn more{{/a}}',
{
components: {
a: <InlineSupportLink supportContext="hosting-clear-cache" showIcon={ false } />,
},
}
) }
/>
<CachingForm />
</Panel>
);
}
|