Action is an object. So whenever you dispatch actions, you’d have to give dispatch()
an action object (with the type that we are expecting), like so:
1dispatch({ type: 'DECREMENT' })
If you don’t save it like so
1const DECREMENT = 'DECREMENT'
you are