관리-도구
편집 파일: 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 }} /> ); }