atom-beautify/examples/simple-jsbeautifyrc/jsx/expected/test.jsx

7 lines
194 B
React
Raw Normal View History

var Mist = React.createClass({
renderList: function() {
2015-10-08 17:36:05 -06:00
return this.props.items.map(function(item) {
return <ListItem item={return <tag>{item}</tag>} key={item.id}/>;
});
2015-05-20 10:40:59 -06:00
}
});