This is the 2nd React Skill test project assigned by Coding Ninjas. Project Name: Contact-Manager
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in your browser.
The page will reload when you make changes.
You may also see any lint errors in the console.
open https://ishika-contact-manager.netlify.app/ to view it in your browser
All the featuere works on temporary which is ADD, DELETE and UPDATE.
Fetch and show users from the api - https://jsonplaceholder.typicode.com/users Add a contact, make a POST call to the above url (from where you are fetching) and save the contact in react state. (This will be a dummy request, you won’t be able to add contacts to the server. But the request is valid and will send you some data. Read the guide). Update a contact, make a PUT call to the above url. (Again this is a dummy call). Delete a contact, make a DELETE call to the above url. (Again this is a dummy call).