Most of the time I feel that global-ish data like that shouldn't be passed/exist in the first place. Context is a doubly dangerous place for it, since it can go stale.
I take that back. I'm am accessing this kind of data - via the actions I'm passing down. They are `getStore`ing anything they need.
Anything else that needs to have the data >should< access via props, or the redux store is no longer the single point of truth.
Footguns, footguns, everywhere.
And us, with four left feet.
Most of the time I feel that global-ish data like that shouldn't be passed/exist in the first place. Context is a doubly dangerous place for it, since it can go stale.
I take that back. I'm am accessing this kind of data - via the actions I'm passing down. They are `getStore`ing anything they need.
Anything else that needs to have the data >should< access via props, or the redux store is no longer the single point of truth.