import { createElement, render, useState } from '@wordpress/element' import * as check from '@wordpress/element' import { __ } from 'ct-i18n' const VersionMismatch = () => { const [isLoading, setIsLoading] = useState(false) return (

{__( 'Action Required - Blocksy Theme and Companion version mismatch', 'blocksy-companion' )}

{__( 'We detected that you are using an outdated version of Blocksy Theme. Please update it to the latest version.', 'blocksy-companion' )}

{__( 'In order to take full advantage of all features it has to offer - please install and activate the latest versions of both Blocksy theme and Blocksy Companion plugin.', 'blocksy-companion' )}

) } export default VersionMismatch