import {__, sprintf} from "@wordpress/i18n"; import {createInterpolateElement} from "@wordpress/element"; import {CheckVerified} from "@givewp/components/AdminUI/Icons"; /** * @since 3.16.0 */ export const UpgradeModalContent = () => { const {supportedAddons, supportedGateways} = window.GiveDonationForms; return

{createInterpolateElement( sprintf(__('GiveWP 3.0 introduces an enhanced forms experience powered by the new Visual Donation Form Builder. The team is still working on add-on and gateway compatibility. If you need to use an add-on or gateway that isn\'t listed, use the "%sAdd form%s" option for now.', 'give'), '', ''), { b: , } )}
{supportedAddons.length > 0 && ( )}
{supportedGateways.length > 0 && ( )}

{__('Read more on Add-ons and Gateways compatibility', 'give')}

} const SupportedItemsList = ({title, items}) => { return ( <>

{title}

) }