项目文件夹

文件
2026-07-13 12:37:41 +08:00

19 行
390 B
TypeScript

import { FC } from "react"
interface FinishStepProps {
displayName: string
}
export const FinishStep: FC<FinishStepProps> = ({ displayName }) => {
return (
<div className="space-y-4">
<div>
Welcome to Chatbot UI
{displayName.length > 0 ? `, ${displayName.split(" ")[0]}` : null}!
</div>
<div>Click next to start chatting.</div>
</div>
)
}