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