As a note: I’ve read the docs for Redux (Baobab, too), and I’ve done a fair share of Googling & testing. Why is it so strongly suggested that a...
  • May 21, 2022
  • 0 Comments
Is there a systematic approach to debug what is causing a component to re-render in React? I put a simple console.log() to see how many time it renders, but...
  • May 16, 2022
  • 0 Comments
Say I have the following: export const SOME_ACTION = 'SOME_ACTION'; export function someAction() { return { type: SOME_ACTION, } } And in that action creator, I want to access...
  • May 11, 2022
  • 0 Comments
I was reading the documentation for the Redux library and it has this example: In addition to reading the state, container components can dispatch actions. In a similar fashion,...
  • May 7, 2022
  • 0 Comments