Root Zanli
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
local
/
sitepad
/
editor
/
site-data
/
plugins
/
pagelayer
/
js
/
react
/
src
/
components
/
Filename :
html-to-react.js
back
Copy
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 }} /> ); }