Skip to content

Commit

Permalink
Corregido typo error en Readme ejercicio 03.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AnggieAlava committed Mar 7, 2024
1 parent ac52822 commit 7037786
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions exercises/03.1-your-first-component/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ Cuando creas funciones que devuelven HTML, JSX te dejará tratarlos como **Compo

> Creando nuestro primer componente funcional
> Una de las cosas que podemos hacer gracias a JSX es llamar funciones com si fueran etiquetas HTML, por ejemplo:
> Una de las cosas que podemos hacer gracias a JSX es llamar funciones como si fueran etiquetas HTML, por ejemplo:
```js
// Si declaramos una función llamada `MyFunction`
const MyFunction = () => {
return <h1>I Love React</h1>;
}
return <h1>I Love React</h1>;
};

// Podemos llamar la función como una etiqueta HTML así
<MyFunction />
// Podemos llamar la función como una etiqueta HTML así
<MyFunction />;

// En vez de hacerlo de la típica forma usando paréntesis
MyFunction();
Expand Down

0 comments on commit 7037786

Please sign in to comment.