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

21 lines
435 B
JavaScript
Raw Normal View History

2016-03-28 17:24:27 +01:00
/* A dummy React component which we use for stubbing out app-level components
*/
'use strict';
2017-10-11 17:56:17 +01:00
const React = require('react');
2016-03-28 17:24:27 +01:00
2016-03-31 00:48:46 +01:00
module.exports = function(opts) {
opts = opts || {};
if (!opts.displayName) {
opts.displayName = 'StubComponent';
}
if (!opts.render) {
opts.render = function() {
2017-10-11 17:56:17 +01:00
return <div>{ this.displayName }</div>;
};
2016-03-31 00:48:46 +01:00
}
return React.createClass(opts);
};