import React from 'react' import Link from 'next/link' import * as Icon from 'react-feather' import { useSelector } from 'react-redux' import AddToCartBtn from '@/components/Shop/AddToCartBtn' //addon library import { resetIdCounter, Tab, Tabs, TabList, TabPanel } from 'react-tabs'; resetIdCounter(); //yarn library import NumberFormat from 'react-number-format'; const ProductCard = function ({ ygp, yamalube, helmet, apparel, accessories, backend, ...props }) { const products = useSelector((state) => state.products) console.log(ygp) const YGP = ygp.map((data) => { return (
); }) const Yamalube = yamalube.map((data) => { return ( ); }) const Helmet = helmet.map((data) => { return ( ) }) const Apparel = apparel.map((data) => { return ( ) }) const Accessories = accessories.map((data) => { return ( ) }) return (Showing 1-8 of 14 results