19 lines
390 B
TypeScript
19 lines
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>
|
|
)
|
|
}
|