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 b9c6ddf commit 506242bCopy full SHA for 506242b
examples/incremental-rendering/incremental-rendering.tsx
@@ -171,8 +171,8 @@ function IncrementalRendering() {
171
<Text bold color="yellow">
172
Live Logs (only 1-2 lines update per frame):
173
</Text>
174
- {logLines.map((line, index) => (
175
- <Text key={`log-${index}-${line}`} color="green">
+ {logLines.map(line => (
+ <Text key={line} color="green">
176
{line}
177
178
))}
0 commit comments