Skip to content

Instantly share code, notes, and snippets.

@aykutyaman
Created August 23, 2016 09:49
Show Gist options
  • Save aykutyaman/4e5ec5b499ce85144d00fe57fbdb610a to your computer and use it in GitHub Desktop.
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
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