Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 476 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 476 Bytes

React Counter

Implement a simple application - classic counter with help of react library

Design of app:

  • must have a counter (any design)
  • must have three buttons:
    • increment - must increment counter by 1
    • decrement - must decrement counter by 1
    • reset - must reset counter to 0

Condition: the counter can't be less than -100 and greater than 100

example