/* * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import type { CommonModalProps } from '../../../common/modals/common-modal' import { CommonModal } from '../../../common/modals/common-modal' import { AliasesAddForm } from './aliases-add-form' import { AliasesList } from './aliases-list' import React from 'react' import { ListGroup, ListGroupItem, Modal } from 'react-bootstrap' import { Trans, useTranslation } from 'react-i18next' /** * Component that holds a modal containing a list of aliases associated with the current note. * * @param show True when the modal should be visible, false otherwise. * @param onHide Callback that is executed when the modal is dismissed. */ export const AliasesModal: React.FC = ({ show, onHide }) => { useTranslation() return (

) }