I\'m using react js with latest babel 7. when I use decorators of mobx I get the error
Parsing error: Using the export keyword between a decorator and a class is not
Instead of changing the import statements across your project, you could use the legacyDecorators option in your .eslintrc file.
legacyDecorators
.eslintrc
{ "parserOptions": { "ecmaFeatures": { "legacyDecorators": true } } }