import React from "react"; import { Link } from "react-router-dom"; import ProductCardStyleOne from "../Cards/ProductCardStyleOne"; import DataIteration from "../Helpers/DataIteration"; export default function AllBidsSection({ className, allBids = [] }) { return ( <>

All Bids

{({ datas }) => (
)}
View Art Work
); }