What is a thunk? — What is a thunk? A “thunk” is a term for a function that is returned by another function function normal_function() =>{
function thunk()={
console.log('I am the thunk');
}
} Redux In Redux, we have actions, action creators, and reducers which we use to manage the state in our app. Actions Actions are simple objects. Ironically, although…