Using react-select I've got next issue: Cannot read property 'value' of undefined
问题 I'm using react-select . When I'm selecting a determinate value from select I've got the next issue TypeError: Cannot read property 'value' of undefined Also, values fetched from reducer todoList are not showed, I can't see them. This is my code: import Select from "react-select"; import "./styles.css"; import { searchTodos } from "../../actions/ServiceActions"; class SelectedTodo extends Component { constructor(props) { super(props); this.state = { selectedTodo: "" }; this.handleChange =