I am a newbie on react redux , can I create a Action with more than 2 field? normali an action return a object with
{type : same_vale, paylod : same_vale}
Is it possible to return from a action something like this:
{type : same_vale , paylod : same_vale, idx : same_vale}
Is this an error? it allowed only make something like that?:
{type : same_vale , paylod : { field1 : same_vale, idx : same_vale}
Thanks