12 lines
248 B
TypeScript
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>
|
|
);
|
|
};
|