We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccb6e3a commit 5f849c6Copy full SHA for 5f849c6
1 file changed
src/content/learn/thinking-in-react.md
@@ -485,14 +485,6 @@ function FilterableProductTable({ products }) {
485
486
Унутры `SearchBar` дадайце апрацоўшчыкі падзей `onChange` і з іх дапамогай задайце значэнні станаў у бацькавым кампаненце:
487
488
-<<<<<<< HEAD
489
-```js {5}
490
-<input
491
- type="text"
492
- value={filterText}
493
- placeholder="Шукаць..."
494
- onChange={(e) => onFilterTextChange(e.target.value)} />
495
-=======
496
```js {4,5,13,19}
497
function SearchBar({
498
filterText,
@@ -513,7 +505,6 @@ function SearchBar({
513
505
type="checkbox"
514
506
checked={inStockOnly}
515
507
onChange={(e) => onInStockOnlyChange(e.target.checked)}
516
->>>>>>> 5d2f7105bd6374e465b8bdce8efceaeb8f01c937
517
508
```
518
509
519
510
Цяпер праграма цалкам працуе!
0 commit comments