import { CheckCircle2 } from 'lucide-react'; import { WishCard } from '@/components/WishCard/WishCard'; import { useDeleteWish, useDuplicateWish, useWishes, } from '@/features/wishes/wishes.hooks'; export function CompletedPage() { const { data, isLoading } = useWishes('completed'); const duplicate = useDuplicateWish(); const remove = useDeleteWish(); return (
Wishes you've received. You can create a new wish based on any of them.
When a wish comes true, mark it as fulfilled and it lands here.