У меня проблема с приставкой Devtools и console.log ().
Я вижу свой объект в Redux DevTools: https://image.noelshack.com/fichiers/2019/18/6/1557004256-capture-d-ecran-du-2019-05-04-22-10-33.png
и мой console.log пуст сверху:https://image.noelshack.com/fichiers/2019/18/6/1557004421-capture-d-ecran-du-2019-05-04-23-00-50.png
мой код в рендере:
const { user, users } = this.props; console.log(users)
моя отправка:
componentDidMount() { this.props.dispatch(userActions.getAll()); }
my mapStateToProps (не ES6):
function mapStateToProps(state) { const { authentication, users } = state; const { user } = authentication; return { user, users, }; }
Можете ли вы помочь мне?