import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' import { SimpleUserAvatar } from '../UserAvatar' export default function Title({ parentEvent }: { parentEvent?: Event }) { const { t } = useTranslation() return parentEvent ? (
{t('Reply to')}
{parentEvent.content}
) : ( t('New Note') ) }