import { FunctionComponent } from 'react' type Props = { componentName: string reloadIframe: () => void } const IssueOnLoading: FunctionComponent = ({ componentName, reloadIframe }) => { return (
There was an issue loading {componentName}.
) } export default IssueOnLoading