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