Created
July 28, 2016 18:29
-
-
Save dcramer/7a14727c3175a79efc99cdcfd83a334c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import ReactDOM from 'react-dom'; | |
const componentToString = function(node) { | |
let el = document.createElement('div'); | |
ReactDOM.render(node, el); | |
return el.innerHTML; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment