# Znajdź błąd: React / Next.js > Jeden fragment kodu. Znajdź błąd albo udowodnij, że go nie ma. Codzienne wyzwanie: 2026-08-19 (UTC) · Mid-Level ```tsx import { useState } from 'react' function Stepper() { const [count, setCount] = useState(0) const incrementBy3 = () => { setCount(count + 1) setCount(count + 1) setCount(count + 1) } return (
Count: {count}