import {
useState,
createElement,
Component,
Fragment,
} from '@wordpress/element'
import { sprintf, __ } from 'ct-i18n'
import Overlay from './Overlay'
const ProOverlay = ({ username }) => {
const [isShowing, setIsShowing] = useState(false)
return (
{__(
'Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.',
'blocksy'
)}
{sprintf(__('Hello %s', 'blocksy'), username)}