Reactjs Redux:mapStateToProps not rendering the component on state change
问题 I have search filter and sort inputs on the same component.I'm using reselect(selector package) where the data array is filtered and sorted. The mapStateToProps is updating the component on each search filter result.but the mapStateToProps is not updating the component after sorting the array. selectors/index.js import { createSelector } from 'reselect' const getListOfCategory = (state) => state.products.product const getSearchText = (state) => state.products.searchText const getSortValue =