Skip to content

Instantly share code, notes, and snippets.

@daslicht
Last active November 13, 2016 14:41
Show Gist options
  • Save daslicht/d7daa7b0abab86606ff1f5905b9ae331 to your computer and use it in GitHub Desktop.
Save daslicht/d7daa7b0abab86606ff1f5905b9ae331 to your computer and use it in GitHub Desktop.
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