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