factuges_2025/packages/ui/components/counter.tsx
2025-04-27 22:47:47 +02:00

12 lines
248 B
TypeScript

import React, { useState } from "react";
export const Counter: React.FC = () => {
const [count, setCount] = useState(0);
return (
<button id="counter" type="button" onClick={() => setCount(count + 1)}>
{count}
</button>
);
};