🎣 useState Hook in Action!

❌ Without useState

0
Oops! Count reset to 0 again! 😱

What happens:

• The app forgets the count every time

• Always resets back to 0

• No memory of previous clicks

🧠

✅ With useState

0

What happens:

• useState remembers the current count

• Updates automatically when changed

• Maintains state between interactions