Dispatch Redux Action
redux_dispatch_actionDispatch a Redux action to modify the store state. Provide the action type and optional payload, with support for multiple stores.
Instructions
Dispatch an action to the Redux store.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Redux action type to dispatch, for example `counter/increment`. | |
| payload | No | Optional action payload passed through as `action.payload`. | |
| storeName | No | Optional target store name when multiple stores are registered. |