deerflow / frontend /src /components /workspace /thread-title.tsx
pjpjq's picture
Deploy DeerFlow to Hugging Face Space
033ca06 verified
import { FlipDisplay } from "./flip-display";
export function ThreadTitle({
threadTitle,
}: {
className?: string;
threadId: string;
threadTitle: string;
}) {
return <FlipDisplay uniqueKey={threadTitle}>{threadTitle}</FlipDisplay>;
}