Created
January 28, 2016 04:03
-
-
Save shuding/a1f3c11f1075ae6cd18f to your computer and use it in GitHub Desktop.
JSX Multiple Elements Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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