Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Last active August 17, 2020 18:35
Show Gist options
  • Save sabesansathananthan/e9ca832ec6bc86268f9dc7efa887131a to your computer and use it in GitHub Desktop.
Save sabesansathananthan/e9ca832ec6bc86268f9dc7efa887131a to your computer and use it in GitHub Desktop.
Embed a blog on your React Website
export default function ToText(node) {
let tag = document.createElement("div");
tag.innerHTML = node;
node = tag.innerText;
return node;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment