'use client' import { useState } from 'react' import { inc } from '../../client/actions' export function Button() { const [count, setCount] = useState(0) return ( <>

{count}

) }