import React from 'react' import { Alert } from 'react-bootstrap' import { ForkAwesomeIcon } from '../../fork-awesome/fork-awesome-icon' export interface LoadingScreenProps { failedTitle: string } export const LoadingScreen: React.FC = ({ failedTitle }) => { return (
{ failedTitle !== '' ? ( The task '{failedTitle}' failed.
For further information look into the browser console.
) : null }
) }