import { TaggedNostrEvent } from "@snort/system"; import { SubthreadProps } from "@/Components/Event/Thread/Subthread"; import { ThreadNote } from "@/Components/Event/Thread/ThreadNote"; export const TierTwo = ({ active, isLastSubthread, notes, chains, onNavigate }: SubthreadProps) => { const [first, ...rest] = notes; return ( <> {rest.map((r: TaggedNostrEvent, idx: number) => { const lastReply = idx === rest.length - 1; return ( ); })} ); };