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 91a9cd6 commit e055a35Copy full SHA for e055a35
ep16-new-css/app/components/DisplayList.jsx
@@ -6,9 +6,8 @@ export default class DisplayList extends React.Component {
6
render () {
7
return <ul>
8
{ this.props.todos.map((todo, i) => {
9
- return <section id="main">
+ return <section id="main" key={todo.title}>
10
<DisplayItem
11
- key={todo.title}
12
todo={todo}
13
handleDone={this.props.handleDone}
14
handleDelete={this.props.handleDelete} />;
0 commit comments