I have a question about using react. As you can see from the title, I\'m wondering if it is possible to use React component(that is created by React.createClass) inside of \
Another approach would be to open a react portal. Ensure that the element has rendered and then simply
ReactDOM.createPortal(,document.querySelector('selector'));
This is the cleanest way so far i have found to achieve this.