Skip to content

Instantly share code, notes, and snippets.

@shuding
Created January 28, 2016 04:03
Show Gist options
  • Save shuding/a1f3c11f1075ae6cd18f to your computer and use it in GitHub Desktop.
Save shuding/a1f3c11f1075ae6cd18f to your computer and use it in GitHub Desktop.
JSX Multiple Elements Demo
let elements = [
<div/>,
<div/>
];
return React.createElement('div', null, ...elements);
// !!! using `<div>{elements}</div>` here will got a `unique key in array` error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment