carlosvin / budget-tracker

App to track expenses and analyse if they stick to a budget
https://btapp.netlify.com
GNU General Public License v3.0
7 stars 4 forks source link

Propagate changes in stores to subscribers #87

Closed carlosvin closed 5 years ago

carlosvin commented 5 years ago

When data is changed in a store, view is not updated because stores are not react components, so we have to implement a way to propagate this changes to views, some options:

Interesting article about React global state management: https://www.robinwieruch.de/react-global-state-without-redux

carlosvin commented 5 years ago

First implementation in #88