react/perf/tests/basic-div.js

17 lines
344 B
JavaScript
Raw Normal View History

2013-12-17 13:25:05 +08:00
/* jshint undef: true, unused: true */
/* global document */
/* global window */
/* global Benchmark */
/* global React */
if (typeof exports == 'undefined') exports = {};
/*http://benchmarkjs.com/docs#options*/
exports.name = 'React.DOM.div, no props';
exports.fn = function(){
React.DOM.div(null, 'lol, perf testing ', this.count);
};