MobX
@observable is properties / data that you want to keep track of.
@action is a function that change the value of properties / data that you are observing.
@computed is function access the observable data and do computation in real time with the component. (similar to formulas in spreadsheets)
Last updated