<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
The “Run” button wasn’t ending when clicked. As you can see on this board a few other people also had a similar problem in 7/13. Anyway I tried going to Learn ReactJS part 2 then came back to part 1 (so I didn’t miss this.state) and it ended up working.
I strongly suggest that a “skip” button be added in case there are buggy lesson checkers like in 7/13.
```var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
var Button = require(’./Button’);
var Talker = React.createClass({
talk: function () {
for (var speech = ‘’, i = 0; i < 10000; i++) {
speech += 'blah ';
}
alert(speech);
},
render: function () {
return ;
}
});
ReactDOM.render(
,
document.getElementById(‘app’)
);
<do not remove the three backticks above>