Skip to content

Commit 9de815d

Browse files
committed
Add key to list
1 parent 2714dac commit 9de815d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

react-todos/src/components/TodoTable.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export default function TodoTable(props) {
1313
<tbody>
1414
{props.todos.map((todo) => (
1515
<TodoRowItem
16+
key={todo.rowNumber}
1617
rowNumber={todo.rowNumber}
1718
rowDescription={todo.rowDescription}
1819
rowAssigned={todo.rowAssigned}

0 commit comments

Comments
 (0)