?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/options/options/



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

?? Viewing: html.js

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

const HTML = (props) => {
	const { option } = props

	return (
		<div
			dangerouslySetInnerHTML={{
				__html: option.html || '',
			}}></div>
	)
}

export default HTML


??

??