import { ContainerWithHeader } from '@graphcommerce/next-ui' import { Link } from '@material-ui/core' import PageLink from 'next/link' import React from 'react' import ProductListItems, { ProductListItemsProps } from '../../ProductListItems/ProductListItems' import { RowProductGridFragment } from './RowProductGrid.gql' type RowProductGridProps = RowProductGridFragment & ProductListItemsProps export default function RowProductGrid(props: RowProductGridProps) { const { title, pageLinks, magentoCategory, ...productListItems } = props return ( ( {pageLink.title} ))} > ) }