// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 import { CypressFields } from '../../utils/Cypress'; import { useAd } from '../../providers/Ad.provider'; import ProductCard from '../ProductCard'; import * as S from './Recommendations.styled'; const Recommendations = () => { const { recommendedProductList } = useAd(); return ( You May Also Like {recommendedProductList.map(product => ( ))} ); }; export default Recommendations;