react-templates/test/data/repeat.rt.js

25 lines
647 B
JavaScript

define([
'react',
'lodash'
], function (React, _) {
'use strict';
function onClick1(items, itemsIndex, evt) {
this.happend(evt);
return false;
}
function repeatItems2(items, itemsIndex) {
return React.DOM.div({}, React.DOM.span({
'style': {
width: 'auto',
lineHeight: '5px'
},
'onClick': onClick1.bind(this, items, itemsIndex)
}, 'Mock'));
}
return function () {
return React.DOM.p.apply(this, _.flatten([
{},
_.map(this.props.things, repeatItems2.bind(this))
]));
};
});