DEV Community

Discussion on: Comparing Elm to React/Redux

Collapse
 
rametta profile image
Jason

You wouldn't necessarily want to call more than one action for any effect. Ideally you would have one message handler for one side effect and if you wanted to combine 2 or more together you would pipe them into one new message.

model |> update Something |> update Something2