"use client"; import { Button } from "@prototype/components/ui/button"; import { buildCommentStorageSetupCopyText, COMMENT_STORAGE_NOT_CONFIGURED_MESSAGE, } from "@prototype/lib/prototypes/comment-storage-setup-prompt"; import useCopyToClipboard from "@prototype/lib/use-copy-to-clipboard"; type PrototypeCommentStorageEmptyStateProps = { message?: string; vercelProjectName?: string; }; export function PrototypeCommentStorageEmptyState({ message = COMMENT_STORAGE_NOT_CONFIGURED_MESSAGE, vercelProjectName, }: PrototypeCommentStorageEmptyStateProps) { const { copy, icon, isCopied } = useCopyToClipboard(); return (
{message}