import React, { FC } from 'react' import { ProductCard } from '@components/product' import { Grid, Marquee, Hero } from '@components/ui' interface Fields { } interface Props { fields: Fields, customData: any } const BestsellingProducts:FC = ({fields, customData}) => { const bestSelling = customData.bestSelling return ( {bestSelling.slice(0, 12).map(({ node }:any) => ( ))} ) } export default BestsellingProducts