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