We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab3a69 commit ba359e7Copy full SHA for ba359e7
content/docs/lists-and-keys.md
@@ -186,7 +186,7 @@ function ListItem(props) {
186
function NumberList(props) {
187
const numbers = props.numbers;
188
const listItems = numbers.map((number) =>
189
- // Correct! Key should be specified inside the array.
+ // Đúng! Key nên được xác định bên trong mảng:
190
<ListItem key={number.toString()} value={number} />
191
);
192
return (
0 commit comments