/* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import { Button } from 'react-bootstrap' import { Trans, useTranslation } from 'react-i18next' import { LinkContainer } from 'react-router-bootstrap' import { ForkAwesomeIcon } from '../../common/fork-awesome/fork-awesome-icon' export const NewUserNoteButton: React.FC = () => { const { t } = useTranslation() return ( ) }