'use strict';
import * asReactfrom'react';
// This component is rendered if the react loadComponent can't find// which react component to use constFallbackComponent = () => {
return (
<div>Placeholder component
</div>
);
};
exportdefaultFallbackComponent;