Last active
November 13, 2016 14:41
-
-
Save daslicht/d7daa7b0abab86606ff1f5905b9ae331 to your computer and use it in GitHub Desktop.
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
const moves = this.state.history.map((step:string[], move:number) => { | |
const desc = move ? 'Move #' + move : 'Game start'; | |
return ( | |
<li> | |
<a href="#" key={move} onClick={ () => this.jumpTo(move) } >{move}-{desc}</a> | |
</li> | |
); | |
}); | |
error: Each child in an array or iterator should have a unique "key" prop. ??? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment