Created
August 22, 2017 06:30
-
-
Save netsi1964/d140318308e3ec5fd231a800400892e9 to your computer and use it in GitHub Desktop.
RawHTML: ReactJS pure component to render HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const RawHTML = ({children, className = ""}) => | |
<div className={className} dangerouslySetInnerHTML={{ __html: children.replace(/\n/g, '<br />')}} /> |
yay it works, thanks!
Thanks! Worked for me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! Worked for me.