Skip to content

Instantly share code, notes, and snippets.

@nodomw
Created December 5, 2025 11:57
Show Gist options
  • Select an option

  • Save nodomw/f5b09be0f1ccac0c03d5c28e46385365 to your computer and use it in GitHub Desktop.

Select an option

Save nodomw/f5b09be0f1ccac0c03d5c28e46385365 to your computer and use it in GitHub Desktop.
import { useState } from "react";
import "./App.css";
function Counter() {
const [count, setCount] = useState(0);
return (
<button
className="BOMTON"
onClick={() =>
setCount((count) => count + 1)
}
>
count is {count}
</button>
);
}
export default Counter;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment