Possible issue in quick-start tutorial #2201
-
I went through the quick-start tutorial. When I finished, the project would not render because state.counter was undefined ( while trying to read state.counter.value ). Using It is possible that I made a mistake, but wanted to see if this happened for anyone else. Can anyone confirm the above? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@MrDracoG Can you show your |
Beta Was this translation helpful? Give feedback.
@MrDracoG Can you show your
configureStore
call? That sounds like you may have donereducer: counterReducer
, when it should bereducer: {counter: counterReducer}
.