import React from 'react' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { Alert } from 'react-bootstrap' export interface LoadingScreenProps { failed: boolean } export const LoadingScreen: React.FC = ({ failed }) => { return (
{ failed ? An error occurred while loading the application! : null }
) }