gangadhararaoande / react-js-cp9-debuggingFruitsCounter

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

In this project, let's fix the Fruits Counter by applying the concepts we have learned till now.

Refer to the image below:


fruits-counter

Set Up Instructions

Click to view
  • Download dependencies by running npm install
  • Start up the app using npm start

Completion Instructions

Functionality to be fixed

Fix the given code to have the following functionality

  • Initially, the count of the eaten mangoes should be four and the count of the eaten bananas should be five
  • When the Eat Mango button is clicked, then the count of the mangoes eaten should be incremented by one
  • When the Eat Banana button is clicked, then the count of the bananas eaten should be incremented by one

Quick Tips

Click to view
  • There are 8 bugs to be fixed to achieve the functionality and the UI that is expected

Resources

Image URLs

Things to Keep in Mind

  • All components you implement should go in the src/components directory.
  • Don't change the component folder names as those are the files being imported into the tests.
  • Do not remove the pre-filled code
  • Want to quickly review some of the concepts you’ve been learning? Take a look at the Cheat Sheets.

About


Languages

Language:JavaScript 36.8%Language:HTML 33.9%Language:CSS 29.3%