mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-06 16:58:24 +00:00
12 lines
244 B
TypeScript
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>;
|
|
}
|