11 lines
387 B
JavaScript
11 lines
387 B
JavaScript
|
|
import { createElement } from '@wordpress/element'
|
||
|
|
|
||
|
|
const NoLicense = () => {
|
||
|
|
return <div class="ct-demo-notification">
|
||
|
|
<b>Yikes! Something went wrong</b>
|
||
|
|
<p>Unfortunately something went wrong during initialization, please <a href="https://creativethemes.com/blocksy/support/" target="_blank">contact us from here</a> and we will assist you.</p>
|
||
|
|
</div>
|
||
|
|
}
|
||
|
|
|
||
|
|
export default NoLicense
|