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

{__( 'Action Required - Install Blocksy Theme', 'blocksy-companion' )}

{__( 'Blocksy Companion is the complementary plugin to Blocksy theme. It adds a bunch of great features to the theme and acts as an unlocker for the Blocksy Pro package.', 'blocksy-companion' )}

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

) } export default NoTheme