"use client"
import { Separator } from "@/components/ui/separator";
import { WishlistGrid } from "@/components/user/wishlist/wishlist-grid";


export default function WishlistClient() {



  // const Wishlist = useSelector((state:RootState)=> state.wishlist)

  return (
    <section className="space-y-2 py-5 px-2">
      <div>
        <h1 className="text-3xl font-bold tracking-tight">My Wishlist</h1>
        <p className="text-muted-foreground">
          Products you&apos;ve saved for later.
        </p>
      </div>
      <Separator />
      <WishlistGrid />
    </section>
  );
}
