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