Skip to content

Commit

Permalink
fix(translate-react.md): fix string template syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarneyjr authored and macdonst committed Sep 22, 2024
1 parent 20b7197 commit 435821f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cookbook/translate-react.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const image = <img src={href} />
const todoList = `<ul>
${todos.map((todo) => (
`<li key="${todo.id}">${todo.text}</li>`
))}.join('')
)).join('')}
</ul>`
```

Expand Down

0 comments on commit 435821f

Please sign in to comment.