React项目报错: __WEBPACK_IMPORTED_MODULE_3_react___default.a.memo is not a function

I encountered an error when I used React to do the project today. The
React project reported an error: __WEBPACK_IMPORTED_MODULE_3_react___default.a.memo is not a function. After
looking for a day, I finally saw in the package.json file that the versions of react and react-dom were too low. Incompatible with redux and react-redux. It's hard to die of my macabaka. . .
Directly in the terminal npm install --save react and react-dom will do,Just use the latest one when you use it in the future.

Guess you like

Origin blog.csdn.net/qq_44606064/article/details/115151320