I\'ve been testing my React.js application on internet explorer, and finding that some ES6/7 code like Array.prototype.includes() breaks it.
Array.prototype.includes()
I\'m using
I had the same problem. A solution from Daniel Loiterton didn't work for me. But! I added one more import from core-js import 'core-js/modules/es6.symbol'; and this works for me on IE11.
import 'core-js/modules/es6.symbol';