import React, { forwardRef, type HTMLAttributes } from 'react' import { ProductComparisonProvider } from '.' export interface ProductComparisonProps extends HTMLAttributes { /* * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const ProductComparison = forwardRef( function ProductComparison( { testId = 'fs-product-comparison', children, ...otherProps }, ref ) { return (
{children}
) } ) export default ProductComparison