工业聚
工业聚
@mrdulin `react-lite/lib/react-tab-event-plugin` is not the normal usage of `react-lite`, I think it's better to keep independent in `package.json`.
Can you add a simple demo for reproducing the problem? I try to run the demo of velocity-react, and everything looks ok.
This [post](http://www.stefankrause.net/js-frameworks-benchmark5/webdriver-ts/table.html) maybe useful:)
Can you add some codes to reproduce it?
Not yet
@mareklibra try this one. [anu: the React16-compat mini library](https://github.com/RubyLouvre/anu)
If add an alias to webpack configuration can resolve the problem, it's better to build a custom module named `create-react-class.js` ```javascript // create-react-class.js import React from 'react' // which is...
@Bbooth4 this solution would not cause any code change, and es6 classes is compatible.
@Bbooth4 ```javascript resolve: { extensions: ['.js', '.jsx', '.json'], modules: [ path.join(__dirname, 'app'), 'node_modules', ], alias: { 'react': 'react-lite', 'react-dom': 'react-lite', 'create-react-class': './create-react-class', // here must be a path string, not...
@Bbooth4 try absolute file path ```javascript 'create-react-class': path.join(__dirname, './create-react-class') // use absolute file path ```