Files
react/perf/tests/basic-div.js
2014-01-06 12:26:40 -05:00

17 lines
344 B
JavaScript

/* 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);
};