mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-20 21:04:45 +08: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>;
|
||
|
|
}
|