// Copyright The OpenTelemetry Authors // SPDX-License-Identifier: Apache-2.0 import { CypressFields } from '../../utils/Cypress'; import { useAd } from '../../providers/Ad.provider'; import * as S from './Ad.styled'; const Ad = () => { const { adList } = useAd(); const { text, redirectUrl } = adList[Math.floor(Math.random() * adList.length)] || { text: '', redirectUrl: '' }; return (

{text}

); }; export default Ad;