medium
+10 XP
FRONTEND

Counter

Build a counter with increment, decrement, and reset buttons.
You're exploring as a guest. Create a free account to save progress and submit solutions.
import { useState } from 'react';

export default function Counter() {
  // Build a counter with +/- and reset
}