1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
2014-12-30 10:42:31 +02:00

10 lines
218 B
Plaintext

var repeat = React.createClass({
getInitialState: function () {
return {
items: ['One', 'Two', 'Three']
};
},
render: function () {
return repeatRT.apply(this);
}
});