# Encuentra el bug: React / Next.js > Un fragmento de código. Encuentra el bug, o demuestra que no hay ninguno. Reto diario: 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}

) } ``` ## Tu veredicto - Fallo de seguridad - Bug de lógica - Estilo de código - Sin problema Un intento por día. La respuesta aparece justo después. --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/es/reto-diario/react-next