import { PresetQuery } from "@/components/search/preset-query"; import { Skeleton } from "@/components/search/skeleton"; import { Wrapper } from "@/components/search/wrapper"; import { Relate } from "@/types/relate"; import { MessageSquareQuote } from "lucide-react"; import { FC } from "react"; export const Relates: FC<{ relates: Relate[] | null }> = ({ relates }) => { return ( 相关 } content={
{relates !== null ? ( relates.length > 0 ? ( relates.map(({ question }) => ( )) ) : (
没有相关问题.
) ) : ( <> )}
VaalaAI回答完成后,您可以通过分享链接将回答分享给朋友!
有效期20分钟
} >
); };