Skip to content

Commit

Permalink
Add closing </ul> tag
Browse files Browse the repository at this point in the history
  • Loading branch information
yanthomasdev authored Aug 29, 2022
1 parent 7e203c7 commit 2d8640f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/es/core-concepts/astro-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const misPokemonesFavoritos = [/* ... */];
<!-- Puedes mezclar HTML con expresiones de JavaScript, similar a JSX: -->
<ul>
{misPokemonesFavoritos.map((data) => <li>{data.name}</li>)}
<ul>
</ul>
<!-- ¡Use una directiva de maquetado para crear nombres de clase a partir de múltiples strings o incluso objetos! -->
<p class:list={["agregar", "dinámico", {classNames: true}]} />
Expand Down

0 comments on commit 2d8640f

Please sign in to comment.