Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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>
</>
)
}