"use client"; import { useState } from "react"; import { Button } from "@nextui-org/button"; export const Counter = () => { const [count, setCount] = useState(0); return ( ); };