<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.>
I checked the other posts and think the code looks correct. Also tried to log out and log in again. But when I pressed the run button, it keeps spinning and nothing happens. Please help. Thanks!
```var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
var Child = require(’./Child’);
var Parent = React.createClass({
getInitialState: function () {
return { name: ‘Frarthur’ };
},
changeName: function (newName) {
this.setState({
name: newName
});
},
render: function () {
return (
);
}
});
<do not remove the three backticks above>