2016-03-29 00:24:27 +08:00
|
|
|
/* A dummy React component which we use for stubbing out app-level components
|
|
|
|
*/
|
|
|
|
|
2019-09-06 22:04:46 +08:00
|
|
|
import React from 'react';
|
2016-03-29 00:24:27 +08:00
|
|
|
|
2020-08-29 19:14:16 +08:00
|
|
|
export default function({displayName = "StubComponent", render} = {}) {
|
|
|
|
if (!render) {
|
|
|
|
render = function() {
|
2020-08-29 20:02:45 +08:00
|
|
|
return <div>{ displayName }</div>;
|
2017-10-12 00:56:17 +08:00
|
|
|
};
|
2016-03-31 07:48:46 +08:00
|
|
|
}
|
|
|
|
|
2020-08-29 19:14:16 +08:00
|
|
|
return class extends React.Component {
|
|
|
|
static displayName = displayName;
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return render();
|
|
|
|
}
|
|
|
|
};
|
2020-01-14 04:28:33 +08:00
|
|
|
}
|