Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
146 Bytes
const parse = require('html-react-parser');
export const htmlToJsx = (html) => {
const reactElement = parse(html);
return reactElement;
};