Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
'use client'
import { useState } from 'react'
import { inc } from '../../client/actions'
export function Button() {
const [count, setCount] = useState(0)
return (
<>
<p id="count">{count}</p>
<button
id="inc"
onClick={async () => {
const newCount = await inc(count)
setCount(newCount)
}}
>
click me
</button>
</>
)
}