?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/options/options/



?? Go up: /home/webdevt/www/cryptoimpot.fr/wp-content/themes/blocksy/static/js/options

?? Viewing: ct-notification.js

import { Fragment, createElement, Component } from '@wordpress/element'

const Notification = ({ option: { text = '', attr = {} } }) => (
	<Fragment>
		<div
			className="ct-notification"
			{...{
				...(attr || {}),
			}}
			dangerouslySetInnerHTML={{
				__html: text,
			}}
		/>
	</Fragment>
)

Notification.renderingConfig = { design: 'none' }

export default Notification


??

??