forgive me i\'ve searched everywhere and I\'m new in reactjs and trying out examples. I have an error
Uncaught ReferenceError: mountNode is not defined <
Uncaught ReferenceError: mountNode is not defined
You need to tell React where to mount the component. You probably want to replace mountNode with document.getElementById('example') to refer to your element:
mountNode
document.getElementById('example')
React.render( , document.getElementById('example') );