@gleisonsilva This comes up enough that there is an FAQ entry https://day8.github.io/re-frame/FAQs/DoINeedReFrame/
Hey! Should a (def thing (reaction (some-fn-over @app-state))
be automatically changed after some change happens to @app-state?
i mean... this is the way that reaction is supposed to work? Like a cursor
but applying some function to the state?
I think it was, but a have bound thing
to a component and it isn't updated when @app-state
changes...
I think you h e to deref thing
I'm derefing...
but the function some-fn-over
is been called just the first time that I deref