Created
August 23, 2016 09:49
-
-
Save aykutyaman/4e5ec5b499ce85144d00fe57fbdb610a to your computer and use it in GitHub Desktop.
pass the unbound function and the desired args to the child component, and have the child use an instance method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TodoItem = React.createClass({ | |
deleteItem() { | |
this.props.deleteItem(this.props.index); | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment