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