Loading...
Loading...
function Counter() { const [count, setCount] = useState(0); const [name, setName] = useState('React'); useEffect(() => { document.title = `${name}: ${count}`; }, [count, name]); return <button onClick={() => setCount(count + 1)}>+</button>;}no hooks yet
waiting