import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { RocketIcon } from 'lucide-react'; import CopyInput from '../forms/copy-input'; type Props = { id: string; secret: string }; export function CreateClientSuccess({ id, secret }: Props) { return (
{secret && (

You will only need the secret if you want to send server events.

)} Get started! Read our{' '} documentation {' '} to get started. Easy peasy!
); }