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 }} /> ); }