<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.>
4. Build a Stateless Component Class
I always get the following error:
<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>
Oops! The test returned an error. Maybe you have a syntax error, or a typo.
/home/ccuser/workspace/learn-react-04-01-02e/test/ test.js:6
TestedComponent = components[0];
^
TypeError: Cannot read property ‘0’ of undefined
I don’t see anything wrong with the code, I used arrow functions in all exercises before and they always worked:
```//Child.js
var React = require(“react”);
var Child = React.createClass({
render: () => {
return
Hey, my name is {this.props.name}!
;}
})
module.exports = Child;
//Parent.js
var React = require(“react”);
var ReactDOM = require(“react-dom”);
var Parent = React.createClass({
getInitialState: () => {
return {name: “Frarthur”};
},
render: () => {
return
}
})
<do not remove the three backticks above>
Thanks in advance! :)