/* * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import links from '../../../../links.json' import { IconMatrixOrg } from '../../../common/icons/additional/icon-matrix-org' import { TranslatedExternalLink } from '../../../common/links/translated-external-link' import { TranslatedInternalLink } from '../../../common/links/translated-internal-link' import React from 'react' import { Col, Row } from 'react-bootstrap' import { Dot as IconDot, Flag as IconFlag, PeopleFill as IconPeopleFill, Tag as IconTag } from 'react-bootstrap-icons' import { Trans, useTranslation } from 'react-i18next' /** * Renders a bunch of links, where further help can be requested. */ export const LinksTabContent: React.FC = () => { useTranslation() return (

) }