blob: 8661dc03904680aef9569804b4638152ce40919a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { useState } from 'react';
export default function Counter() {
const [count, setCount] = useState(0);
return (
<div className="flex justify-center">
<button
className="px-4 py-2 bg-blue-500 text-white rounded-md hover:bg-blue-600 transition-colors"
onClick={() => setCount(count + 1)}
>
Clicked {count} times
</button>
</div>
);
}
|