| 123456789101112131415161718 |
- import { useState } from 'react'
- function Card() {
- const [count, setCount] = useState(0)
- return (
- <div className="card">
- <button onClick={() => setCount((count) => count + 1)}>
- count is {count}
- </button>
- <p>
- Edit <code>src/App.tsx</code> and save to test HMR
- </p>
- </div>
- )
- }
- export default Card
|