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