// import { useLiveThread } from '@app/space/hooks/useLiveThread'; import { NoteActions, NoteContent, NoteReplyForm, NoteStats, ThreadUser, } from '@shared/notes'; import { RepliesList } from '@shared/notes/replies/list'; import { NoteSkeleton } from '@shared/notes/skeleton'; import { TitleBar } from '@shared/titleBar'; import { useAccount } from '@utils/hooks/useAccount'; import { useEvent } from '@utils/hooks/useEvent'; import { Widget } from '@utils/types'; export function ThreadBlock({ params }: { params: Widget }) { const { status, data } = useEvent(params.content); const { account } = useAccount(); // subscribe to live reply // useLiveThread(params.content); return (