Skip to content

Commit

Permalink
fix: fix code examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Laroikin committed Apr 27, 2023
1 parent 75cad8e commit a946a92
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/content/learn/rendering-lists.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ const listItems = chemists.map(person =>
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -175,7 +175,7 @@ export default function List() {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -306,7 +306,7 @@ export default function List() {
/>
<p>
<b>{person.name}</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -463,7 +463,7 @@ export default function List() {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -565,7 +565,7 @@ export default function List() {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand All @@ -581,7 +581,7 @@ export default function List() {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -673,7 +673,7 @@ function ListSection({ title, people }) {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down Expand Up @@ -797,7 +797,7 @@ function ListSection({ title, people }) {
/>
<p>
<b>{person.name}:</b>
{' ' + person.profession + ' '}.
{' ' + person.profession}.
Достижение: {person.accomplishment}
</p>
</li>
Expand Down

0 comments on commit a946a92

Please sign in to comment.