Exercise Solution

We'll cover the following...

We were trying to refactor our User Card app using Redux. Below, I’ve written a simple solution:

const reducer = state => {
  return state;
};

export default reducer;
...