import { useState } from 'react';
export default function App() {
const [count, setCount] = useState(0);
return (
<div className="container">
<h1>{count}</h1>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}