element-web/test/components/stub-component.js
Michael Telatynski 70ff2bc9cd Switch to createReactClass: views/rooms and test/components. React 16 :D
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
2019-09-06 15:04:46 +01:00

20 lines
466 B
JavaScript

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