From d2dac635a6c01dd00bb02b6a50ddf8fb48d09c59 Mon Sep 17 00:00:00 2001 From: Florian Hammerschmidt Date: Fri, 28 Jun 2024 14:46:00 +0200 Subject: [PATCH] Fix closing tag --- pages/docs/react/latest/arrays-and-keys.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/react/latest/arrays-and-keys.mdx b/pages/docs/react/latest/arrays-and-keys.mdx index bb51e156a..869804f28 100644 --- a/pages/docs/react/latest/arrays-and-keys.mdx +++ b/pages/docs/react/latest/arrays-and-keys.mdx @@ -88,7 +88,7 @@ var items = numbers.map(function (number) { }); ``` - + The best way to pick a key is to use a string that uniquely identifies a list item among its siblings. Most often you would use IDs from your data as keys: