import { WishCard } from '@/components/WishCard/WishCard'; import { useDeleteWish, useRestoreWish, useWishes, } from '@/features/wishes/wishes.hooks'; import { Archive } from 'lucide-react'; export function ArchivePage() { const { data, isLoading } = useWishes('archived'); const restore = useRestoreWish(); const remove = useDeleteWish(); return (
Wishes you put aside. Only you see this. Restore them to your active list any time.
Archived wishes will show up here.