Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
'use client'
import { action1 } from 'server-action-mod'
export default function Page() {
return (
<button
id="action"
onClick={() => {
action1()
}}
>
action
</button>
)
}