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
There is a work around you can do. Modify your class to the following.
import React, { Component } from 'react';
import { observer,inject } from 'mobx-react'
import './style.scss'
@inject('routingStore', 'UserStore')
@observer
class Login extends Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
Login
);
}
}
export default Login;
Technically, you just move export to the bottom of the class. If you have a lot of classes, that solution is not the best one. I couldn't find better way, yet.