I have been reading up on Redux, and it solves a great number of problems. But in essence it is simply a central 'true' storage.
Intuitively though I find the fact that the state is still passed through props or context inelegant.
Aside from disk i/o speeds, why not use the local cookie store as a central data store? This would eliminate the need for passing the data along through components.
The only challenges I see is data safety, but that is not an issue for all applications.
Elaborating based on Dave's comments. My actual question is more about the possibility of having a central Redux style store without needing to actively pass along the state through props or context. Cookies seemed like an interesting first avenue to explore.
Edit: Thanks for the downvotes kind strangers. Good to know asking for help on a rarely discussed topic is punished by loving fellow programmers.