import React, { forwardRef } from 'react' import type { HTMLAttributes } from 'react' export interface ProductGridProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string } const ProductGrid = forwardRef( function ProductGridItem( { testId = 'fs-product-grid', children, ...otherProps }, ref ) { return ( ) } ) export default ProductGrid