I can not find anything wrong in my require(’./Child’); but I get following error message
Make sure that you require(’./Child’); on line 3.
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/react-102/lessons/stateless-inherit-stateful-intro/exercises/stateful-parent-component?action=resume
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
I get following error message:
Make sure that you require(’./Child’); on line 3.
var React = require(‘react’);
var ReactDOM = require(‘react-dom’);
var Child = require(’./Child’);
React.createClass({
render: function() {
return
},
getInitialState: function () {
return { name: ‘Frarthur’ };
}
});
<do not remove the three backticks above>