import ControlsGroup from "@/pages/settings/controls/ControlsGroup"; import Card, { CardContent, CardHeader } from "@/components/Card"; import { __ } from "@wordpress/i18n"; const Kinsta = () => { const controls = [ { id: 'cf_kinsta_purge_on_flush', type: 'toggle', label: __('Automatically purge the Kinsta cache when Cloudflare cache is purged', 'wp-cloudflare-page-cache'), } ]; return (

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

); }; export default Kinsta;