element-web/test/components/stub-component.js

21 lines
435 B
JavaScript
Raw Normal View History

/* A dummy React component which we use for stubbing out app-level components
*/
'use strict';
const React = require('react');
module.exports = function(opts) {
opts = opts || {};
if (!opts.displayName) {
opts.displayName = 'StubComponent';
}
if (!opts.render) {
opts.render = function() {
return <div>{ this.displayName }</div>;
};
}
return React.createClass(opts);
};