Skip to content

Commit 89f8d8e

Browse files
committed
Translate Intro & YouWillLearn
1 parent a0b4b9e commit 89f8d8e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

beta/src/pages/learn/rendering-lists.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
---
2-
title: Rendering Lists
2+
title: Renderowanie list
33
---
44

55
<Intro>
66

7-
You will often want to display multiple similar components from a collection of data. You can use the [JavaScript array methods](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array#) to manipulate an array of data. On this page, you'll use [`filter()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) and [`map()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map) with React to filter and transform your array of data into an array of components.
7+
Często zdarzy się tak, że będziesz chciał/a wyświetlić podobne komponenty na podstawie kolekcji danych. W tym celu, możesz użyć [JavaScript array methods](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array#), aby manipulować tablicą danych. Na tej stronie będziesz używać metod: [`filter()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) oraz [`map()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map) wspólnie z React, aby filtrować i transformować swoją tablicę danych do tablicy komponentów.
88

99
</Intro>
1010

1111
<YouWillLearn>
1212

13-
* How to render components from an array using JavaScript's `map()`
14-
* How to render only specific components using JavaScript's `filter()`
15-
* When and why to use React keys
13+
* Jak renderować komponenty na podstawie tablicy używając metody `Array.map()`
14+
* Jak renderować tylko określone komponenty używając metody `Array.filter()`
15+
* Kiedy i dlaczego używać mechanizmu kluczy w React
1616

1717
</YouWillLearn>
1818

19-
## Rendering data from arrays {/*rendering-data-from-arrays*/}
19+
## Renderowanie danych na podstawie tablic {/*rendering-data-from-arrays*/}
2020

21-
Say that you have a list of content.
21+
Powiedzmy, że masz listę treści.
2222

2323
```js
2424
<ul>

0 commit comments

Comments
 (0)