Files
deer-flow/frontend/src/components/workspace/thread-title.tsx
2026-01-17 17:37:12 +08:00

12 lines
244 B
TypeScript

import { FlipDisplay } from "./flip-display";
export function ThreadTitle({
threadTitle,
}: {
className?: string;
threadId: string;
threadTitle: string;
}) {
return <FlipDisplay uniqueKey={threadTitle}>{threadTitle}</FlipDisplay>;
}