Home > Net >  Redux thunk middleware does not give the required output
Redux thunk middleware does not give the required output

Time:12-24

I am new to Redux and am learning redux from screenshot of the actual output

What have I missed?

CodePudding user response:

store.subscribe(() => { console.log(store.getState()) }) you have missed > in your subscribe.

  • Related