onFocus(thread)} title="Jump to text">
{thread.from == null ? (text removed) : `“${thread.quote}”`}
{thread.replies.map((r) => (
{r.author}
{timeAgo(r.ts)}
{r.text}
))}
setText(e.target.value)}
onKeyDown={(e) => {
if (e.key === 'Enter' && text.trim()) {
onReply(thread.id, text.trim())
setText('')
}
}}
/>
{me.name}
)
}