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