The idea of this workshop is to complete the necessary code to make the application work correctly using the services that call an API
All of the following steps require you to complete the character services file
src/services/characters.js
- List the characters on the home page. The
<CharacterCard />component must receive the information as props - Each of these characters must send me to the detail page where I must show all the information of the character
- List the characters in the character page from the service and dynamically paint the
<CharacterCard />component - On the page to create a new character, you must capture the information from the form and then complete it before sending it to the service that is responsible for creating it in the database.
- On the character detail page, you must add a button that allows you to delete the current character by calling the corresponding service.
-
Run
npm installto install dependencies. -
Run
npm run devto start the development server.