Skip to content

Instantly share code, notes, and snippets.

@chengjianhua
Last active September 18, 2016 08:42
Show Gist options
  • Save chengjianhua/7449530ef1fc1cb548a9f00c029dac78 to your computer and use it in GitHub Desktop.
Save chengjianhua/7449530ef1fc1cb548a9f00c029dac78 to your computer and use it in GitHub Desktop.
React.Children usage
React.Children.map(this.props.children, (child, index) => {
const props = child.props;
return Object.assign({}, child.props, {index});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment