There is an uncommon bug that happens when a React Composite Component (which is produced by React.createClass) is used with non-DOM nodes.
This problem occurs because in certain situation React tries to update the children nodes using DangerouslySetInnerHTML and obviously bombs since the nodes are not HTML.
The 'fix' is to provide a custom version of createClass for non-DOM nodes. There is already similar code in react-pixi
There is an uncommon bug that happens when a React Composite Component (which is produced by
React.createClass
) is used with non-DOM nodes.This problem occurs because in certain situation React tries to update the children nodes using
DangerouslySetInnerHTML
and obviously bombs since the nodes are not HTML.The 'fix' is to provide a custom version of
createClass
for non-DOM nodes. There is already similar code in react-pixi