I am working on a Mobx integration. I don't use local state on components, but Mobx, because Mobx is a comprehensive solution for minimal state. I am still working out how to best integrate Mobx and cell.js. I assume I should call $update on the cell I want to update explicitly. What is the official way to force an update or render of a cell or component (cell subtree)? In React it's called forceUpdate (that is what mobx-react uses).
I am working on a Mobx integration. I don't use local state on components, but Mobx, because Mobx is a comprehensive solution for minimal state. I am still working out how to best integrate Mobx and cell.js. I assume I should call
$update
on the cell I want to update explicitly. What is the official way to force an update or render of a cell or component (cell subtree)? In React it's calledforceUpdate
(that is what mobx-react uses).Thanks for this awesome library!