mirror of
https://github.com/facebook/react.git
synced 2026-02-25 21:55:00 +00:00
17 lines
344 B
JavaScript
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);
|
|
};
|