import { useState } from 'react' export default function ClientComponent() { const [count, setCount] = useState(0) return ( <>
Count: {count}