We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aec06a2 commit 44eb551Copy full SHA for 44eb551
src/App.js
@@ -449,7 +449,7 @@ class App extends Component {
449
<NoteList
450
key={note.noteid}
451
note={note}
452
- handleClick={this.handleNoteListItemClick}
+ handleNoteListItemClick={this.handleNoteListItemClick}
453
handleMouseOver={this.handleNoteListItemMouseOver}
454
handleMouseOut={this.handleNoteListItemMouseOut}
455
/>
src/NoteList.js
@@ -9,7 +9,7 @@ function NoteList(props) {
9
<li
10
className={ListItemClasses}
11
id={note.noteid}
12
- onClick={(e) => props.handleClick(e, note)}
+ onClick={(e) => props.handleNoteListItemClick(e, note)}
13
onMouseOver={(e) => props.handleMouseOver(e, note)}
14
onMouseOut={(e) => props.handleMouseOut(e)}
15
>
0 commit comments