react-templates/playground/samples/rt-repeat.code

10 lines
228 B
Plaintext
Raw Normal View History

2014-12-30 10:05:27 +01:00
var <%= name %> = React.createClass({
2014-12-07 14:13:35 +01:00
getInitialState: function () {
return {
2014-12-30 09:42:31 +01:00
items: ['One', 'Two', 'Three']
2014-12-07 14:13:35 +01:00
};
2014-12-30 09:42:31 +01:00
},
render: function () {
2014-12-30 10:05:27 +01:00
return <%= name %>RT.apply(this);
2014-12-07 14:13:35 +01:00
}
2014-12-30 09:42:31 +01:00
});