# Vind de bug: React / Next.js > Eén stukje code. Vind de bug, of bewijs dat er geen is. Dagelijkse challenge: 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}