Skip to content

Instantly share code, notes, and snippets.

@devethan
Created February 25, 2020 07:59
Show Gist options
  • Save devethan/d922742685bd708954c612631fa573e3 to your computer and use it in GitHub Desktop.
Save devethan/d922742685bd708954c612631fa573e3 to your computer and use it in GitHub Desktop.
How to use React.Children
React.Children.map(children, (child: ReactElement, index) => {
const { props } = child;
return React.cloneElement(child, {
...props,
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment