'use client' import { useState } from 'react' export default function Counter({ inc, dec, double, slowInc }) { const [count, setCount] = useState(0) return (

{count}

) }