Skip to content

03.useState应用案例

js
// https://beta.reactjs.org/reference/react/useState#usestate
import { useState } from 'react';

export default function Counter() {
  const [count, setCount] = useState(0);

  function handleClick() {
    setCount(count + 1);
  }

  return (
    <button onClick={handleClick}>
      You pressed me {count} times
    </button>
  );
}

基于 VitePress 构建