In a ReactJS app, I have an index.js file with the following imports:
export MainContainer from './Main/MainContainer';
export AboutContainer from './About/AboutContainer';
When I run ESLINT, I get the following error:
error Parsing error: Unexpected token MainContainer
The error message is not referencing any of the eslint rules set up in .eslintrc.json. The app runs fine in Chrome with no console errors. Why is eslint throwing the error?