import React from \'react\'; import ReactDOM from \'react-dom\'; import Map from \'./components/map/container/map\'; import App from \'./App\'; import \'./index.css\
I ran into the same problem in my react application. It's definitely your import statements as stated above. I changed:
import {x} from '/x.js' to import x from '/x.js'
import {x} from '/x.js'
import x from '/x.js'
and that got the job done