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

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

); }; export default WPOptimize;