What is the difference between application state and component local state in Clojurescript Om?
As I understand it: Application state is the “global” state that all components in the component tree can access, through cursors. This is the state that your application is in and basically what is being rendered by Om. So, for example, if you are writing a chat program, the application state would contain a list … Read more