Skip to content

Commit

Permalink
Fix conditional-rendering.md merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
bkatsevych authored Nov 20, 2023
1 parent ee14afa commit 5eac26e
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/content/learn/conditional-rendering.md
Original file line number Diff line number Diff line change
Expand Up @@ -626,11 +626,7 @@ export default function PackingList() {

Зверніть увагу, що ви повинні написати `importance > 0 && ...` замість `importance && ...`, щоб якщо `importance` дорівнює `0`, `0` не відображався як результат!

<<<<<<< HEAD
У цьому рішенні використовуються дві окремі умови для вставки пробілу між ім'ям та міткою важливості. Ви також можете використати фрагмент з початковим пробілом: `importance > 0 && <> <i>...</i></>` або додати пробіл безпосередньо всередині `<i>`: `importance > 0 && <i> ...</i>`.
=======
In this solution, two separate conditions are used to insert a space between the name and the importance label. Alternatively, you could use a Fragment with a leading space: `importance > 0 && <> <i>...</i></>` or add a space immediately inside the `<i>`: `importance > 0 && <i> ...</i>`.
>>>>>>> 4f9e9a56611c7a56b9506cf0a7ca84ab409824bc
У цьому рішенні дві окремі умови використовуються щоб вставити пробіл між імʼям та міткою важливості. Альтернативно, ви могли б використати Фрагмент з переднім пробілом: `importance > 0 && <> <i>...</i></>` або додати пробіл безпосередньо всередині `<i>`: `importance > 0 && <i> ...</i>`.

</Solution>

Expand Down

0 comments on commit 5eac26e

Please sign in to comment.