1First we go to the component
2 Set up all inputs
3 Dispatch something (some action) and pass in what parameters you need
4Then go to actions
5 Action will make call to API
6API
7 Makes some crud request (eg. post) and recieves something in return, which is then destructured in our action
8Back in actions
9 Dispatch, passing in type and data we want to send to the reducer
10