Skip to content

Instantly share code, notes, and snippets.

@LoganBarnett
Created December 17, 2015 22:54
Show Gist options
  • Save LoganBarnett/223436b1d988bca6e9bf to your computer and use it in GitHub Desktop.
Save LoganBarnett/223436b1d988bca6e9bf to your computer and use it in GitHub Desktop.
React fp-style wrap-in-li function
const createListItem = (key, C, props, i) => {
return <li key={key + '-' + i}> <C {...props} /> </li>;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment