Is re-frame.core/dispatch-n
still a valid thing? Its not working for me and its not in https://github.com/day8/re-frame/blob/master/src/re_frame/core.cljc?
I see it in re-frame.fx
So it is an effect
Not a function
So only call it from a reg-event-fx?
It is valid but you use it within an event handler
(def-event-fx
:event
(fn [cofx e]
{:dispatch-n [[:one] [:two]]
:db ....}))
notice it is data (key)
Not a function to call
Yes, ok, didn’t realize that.