/* SPDX-FileCopyrightText: 2020 The HedgeDoc developers (see AUTHORS file) SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import { Alert } from 'react-bootstrap' import { HedgeDocLogo, HedgeDocLogoSize } from '../common/hedge-doc-logo/hedge-doc-logo' import { ShowIf } from '../common/show-if/show-if' export interface LoadingScreenProps { failedTitle?: string } export const LoadingScreen: React.FC = ({ failedTitle }) => { return (
The task '{failedTitle}' failed.
For further information look into the browser console.
) }