I'm pre-compiling my jsx assets using the react-tools, this produces code like React.Dom.div(null). The problem is that the version of react I'm using doesn't have a variable Dom attached to it, it has the variable DOM.
jsx version 0.8.9 and react version 0.8.0
A temporary fix I'm using is:
after react has loaded but before any of my code runs. But this needs to be fixed upstream.
Unless I'm missing something? A version mismatch?