Just started running into this bug today, everything was going smoothly before then. Only started happening after I updated to 15.4.0.
When I do import React from 'react';, this error gets thrown on the page when I try to use ReactDOM to render something to the DOM. Here's my code:
import React from 'react';
import ReactDOM from 'react-dom';
import App from './main/App';
ReactDOM.render(<App />, document.querySelector('.wrapper'));
I'm using React 15.4.0 and ReactDom 15.4.0, and bundling everything with Rollup and Buble.
Here's a screenshot of what Chrome tells me is happening:
