import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'; import { clipboard } from '@/utils/clipboard'; import { Copy, RocketIcon } from 'lucide-react'; import Link from 'next/link'; import type { IServiceClient } from '@openpanel/db'; import { Label } from '../ui/label'; type Props = IServiceClient; export function CreateClientSuccess({ id, secret, cors }: Props) { return (
{secret ? ( ) : (
{cors}
)} Get started! Read our documentation to get started. Easy peasy!
); }