deechael.net/components/counter.tsx
2024-09-18 22:54:40 +08:00

15 lines
287 B
TypeScript

"use client";
import { useState } from "react";
import { Button } from "@nextui-org/button";
export const Counter = () => {
const [count, setCount] = useState(0);
return (
<Button radius="full" onPress={() => setCount(count + 1)}>
Count is {count}
</Button>
);
};