We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 239e811 commit fd53d37Copy full SHA for fd53d37
Example/App.js
@@ -17,7 +17,7 @@ export default class App extends Component {
17
super(props);
18
let data = [];
19
for (var i = 0; i < 10; i++) {
20
- data.push({key: i, value: Math.floor(Math.random() * 100) + 1});
+ data.push({key: String(i), value: Math.floor(Math.random() * 100) + 1});
21
}
22
this.state = {
23
value: 1,
0 commit comments