redux-tutorial/05_combine reducers
👉 https://github.com/happypoulp/redux-tutorial/wiki Tutorial 05 - combine reducers reducer 가 뭔지 이해하기 시작했다… var reducer_0 = function (state = {}, action) { console.log('reducer_0 이 전달받은 상태', state, '와 액션', action) switch (action.type) { case 'SAY_SOMETHING': return...
15 Mar 2020