/* * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file) * * SPDX-License-Identifier: AGPL-3.0-only */ import React from 'react' import type { AuthFieldProps } from './fields' import { Form } from 'react-bootstrap' import { useTranslation } from 'react-i18next' /** * Renders an input field for a username. * @param onChange Hook that is called when the input is changed. * @param invalid True indicates that the username is invalid, false otherwise. */ export const UsernameField: React.FC = ({ onChange, invalid }) => { const { t } = useTranslation() return ( ) }