import ControlsGroup from "@/pages/settings/controls/ControlsGroup"; import Card, { CardContent, CardHeader } from "@/components/Card"; import { __ } from "@wordpress/i18n"; const WPPerformance = () => { const controls = [ { id: 'cf_wp_performance_purge_on_cache_flush', type: 'toggle', label: __('Automatically purge the cache when WP Performance flushes its own cache', 'wp-cloudflare-page-cache'), } ]; return (

{__('WP Performance settings', 'wp-cloudflare-page-cache')}

); }; export default WPPerformance;