I get a compile error: ‘Module not found: Can’t resolve react/lib/React’ in my React app. Here is a new package configuration. How can I resolve this?
{
"appName": "eShopClient",
"appVersion": "1.0.0",
"private": true,
"deps": {
"react": "17.0.1",
"react-dom": "17.0.1"
},
"scripts": {
"startDev": "react-scripts start"
}
}