????

Your IP : 3.144.87.230


Current Path : /usr/local/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components/
Upload File :
Current File : //usr/local/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components/html-to-react.js

import React from '@wordpress/element';

// TODO delete this not in use till now
export const HtmlToReact = (props) => {
	const htmlInput = props.html;

	return (
		<div dangerouslySetInnerHTML={{ __html: htmlInput }} />
	);
}