import { useMemo } from "react"; import { motion } from "framer-motion"; import { Collection as CollectionType } from "@/type"; interface Props { prompt: string; } export const CollectionLoading: React.FC = ({ prompt }) => { return (

{prompt}

); };