Merge pull request #695 from luigy/patch-1

Fix "Dynamic Children" example
This commit is contained in:
Paul O’Shannessy
2013-12-26 09:04:21 -08:00
+1 -1
View File
@@ -124,7 +124,7 @@ The situation gets more complicated when the children are shuffled around (as in
var results = this.props.results;
return (
<ol>
{this.results.map(function(result) {
{results.map(function(result) {
return <li key={result.id}>{result.text}</li>;
})}
</ol>