Throughout this guided lab you’ll be working with React Hooks 🪝
The lab will guide you through updating an existing React application to introduce API calls and React Hooks
The application is called The World of Disney and users can browse through an entire list of Disney characters!!

As a sense of direction these are the steps you’ll cover
useEffect to make the API call when the state changesuseContext to access the list of favourites from anywhereshowFavourites functionality to only show your favourite disney charactersWhy not start the application before we begin to change it
To start the application run:
npm install
Followed by:
npm start
You should then be able to access the application by opening the browser and visiting
npm test
Assuming you were able to start the application, let’s move on to the first activity and bring in the API call.