This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { useState } from 'react'; | |
| // 1. EL COMPONENTE: Es como una función que crea una pieza de tu web | |
| function BotonMagico() { | |
| // 2. EL ESTADO: Es la "memoria" del componente. | |
| // 'cuenta' es el valor actual, 'setCuenta' es la función para cambiarlo. | |
| const [cuenta, setCuenta] = useState(0); | |
| return ( |