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