import { Show } from 'solid-js' import { Button } from '../ui' type Props = { badge: string title: string body: string joinActionLabel: string joiningLabel: string joining: boolean canJoin: boolean botLinkLabel: string botLink: string | null reloadLabel: string onJoin: () => void onReload: () => void } export function OnboardingState(props: Props) { return (
{props.badge}

{props.title}

{props.body}

) }