Similarly, if you want to write (update) the redux state, you cannot do it directly. You have to write a reducer for it, that is, something that reduces your state. Once you write a reducer for your store, you can then write dispatchers. These functions are called dispatchers because they dispatch certain actions to these reducers, and these reducers on receiving those actions, update the state accordingly depending on what actions they received.