next.js/examples/with-jest/app/counter.tsx
counter.tsx16 lines274 B
"use client";

import { useState } from "react";

export default function Counter() {
  const [count, setCount] = useState(0);
  return (
    <>
      <h2>{count}</h2>
      <button type="button" onClick={() => setCount(count + 1)}>
        +
      </button>
    </>
  );
}
Quest for Codev2.0.0
/
SIGN IN