import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' export default function Title({ parentStuff }: { parentStuff?: Event | string }) { const { t } = useTranslation() return parentStuff ? (
{t('Reply to')}
{typeof parentStuff === 'string' && (
{parentStuff}
)}
) : ( t('New Note') ) }