Card.tsx 352 B

123456789101112131415161718
  1. import { useState } from 'react'
  2. function Card() {
  3. const [count, setCount] = useState(0)
  4. return (
  5. <div className="card">
  6. <button onClick={() => setCount((count) => count + 1)}>
  7. count is {count}
  8. </button>
  9. <p>
  10. Edit <code>src/App.tsx</code> and save to test HMR
  11. </p>
  12. </div>
  13. )
  14. }
  15. export default Card