Current solution for flat action
● Only define `dispatch` action
○ def dispatch(state:) state; end
● Call it from instance method of component
○ def update_something(s:)
actions.dispatch(state: {something: s})
end
● It is not the best, but it works without conflict