/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import { Alert } from 'react-bootstrap' import { Trans, useTranslation } from 'react-i18next' import { InternalLink } from '../common/links/internal-link' import { ShowIf } from '../common/show-if/show-if' import { SimpleAlertProps } from '../common/simple-alert/simple-alert-props' export const InvalidYamlAlert: React.FC = ({ show }) => { useTranslation() return ( ) }