1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25"use client"; import { useState } from "react"; import styles from "./counters.module.css"; function MyButton() { const [count, setCount] = useState(0); function handleClick() { setCount(count + 1); } return ( <div> <button onClick={handleClick} className={styles.counter}> Clicked {count} times </button> </div> ); } export default function Counters() { return <MyButton />; }