11 lines
240 B
TypeScript
11 lines
240 B
TypeScript
import React, { useState } from "react";
|
|
|
|
export function Counter() {
|
|
const [count, setCount] = useState(0);
|
|
|
|
return (
|
|
<button type="button" onClick={() => setCount((count) => count + 1)}>
|
|
Counter {count}
|
|
</button>
|
|
);
|
|
}
|