2016-03-28 17:24:27 +01:00
|
|
|
/* A dummy React component which we use for stubbing out app-level components
|
|
|
|
|
*/
|
|
|
|
|
|
2019-09-06 15:04:46 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
import createReactClass from 'create-react-class';
|
2016-03-28 17:24:27 +01:00
|
|
|
|
2019-12-19 17:45:24 -07:00
|
|
|
export default function(opts) {
|
2016-03-31 00:48:46 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2019-09-06 15:04:46 +01:00
|
|
|
return createReactClass(opts);
|
2020-01-13 13:28:33 -07:00
|
|
|
}
|