Я получаю следующую ошибку при запуске npm start:
./src/containers/CarForm.js
Module not found: Can't resolve 'react/redux' in 'C:\Users\james\Desktop\Chariot\chariot-client\src\containers'
Подобные вопросы по SO решаются с помощью npm install react-redux --save
(или аналогичных вариантов).
Я пытался удалить свой package-lock.json, затем запустить npm install, а также очистить мой кеш.
Вот мой package.json
код:
{
"name": "chariot-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.2",
"redux": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {}
}
А вотфайл (CarForm.js), в котором есть проблема:
import React, { Component } from 'react';
import { connect } from 'react/redux';
import { updateCarFormData } from '../actions/carForm';
import { createCar } from '../actions/cars';
class CarForm extends Component {
handleOnChange = event => { //rest of code
..
Раньше у меня была ошибка «Не удается разрешить« реагировать »», но не получалось то же самое для «response-redux ', поэтому я предполагаю, что неправильно импортирую (или что-то еще очень очевидное).
Любая помощь будет признательна.