我在项目中使用react并且导入React.Component类没有问题。但是当试图导入不扩展任何东西的vanilla es6类失败时。即使eslint编译没有问题。导入的类在构造函数中也为null。
import Utils from "../../common/services/Utils";
componentWilReceiveProps(newProps){
Utils // here is null
}
class Utils {
test() {
// do nothing
}
}
export default Utils;