I'm trying to run a simple React component and not sure why this isn't working.
For some reason, addRows isn't running. Can someone explain why?
var CreateRows = React.createClass({
addRows : function(){
return (
<tr>
<td>Morgan</td>
<td>[email protected]</td>
</tr>
)
},
render: function(){
return (
<tbody>
{this.addRows}
</tbody>
)
}
});