👨H
Size: a a a
i
DK
ei
const Component = () => {
const [count, setCount] = useState(0)
useEffect(() => {
setInterval(() => {
console.log(count)
}, 1000)
setTimeout(() => {
setCount(current => current + 1)
}, 1000)
}, [count])
}
ei
count
совсем не один, а куча с разных рендеровei
DK
ei
ei
ei
DK
i
S
i
ei
i
V