import React, { useState } from 'react'; function Counter() { const [count, setCount] = useState(0); return ( <div> <p>شمارشگر: {count}</p> <button onClick={() => setCount(count + 1)}>افزایش</button> </div> ); } export default Counter;