dispatch
Last updated
Last updated
Send an update to store.
@parameters
@return
Examples:
Another option for updating the state is using function as second parameter, we can now omit the code from line 4 on the first example because the current state is already on the argument list of callback function.
Name
Type
Description
action
string
Action label.
newState
object
function
New state that will merge to current state. Exceeded properties are not restricted. If you use a function for this, it should be look like: function (state) {...}
and must return a new state.
Type
Description
undefined