import { FunctionalComponent } from 'preact'; interface IProps { componentName: string; reloadIframe: () => void; } export const IssueOnLoading: FunctionalComponent = ({ componentName, reloadIframe }) => { return (
There was an issue loading {componentName}
); };