import { TargetedOfferData } from '@nitrots/nitro-renderer'; import { Dispatch, SetStateAction } from 'react'; import { GetConfigurationValue } from '../../../../api'; import { LayoutNotificationBubbleView, Text } from '../../../../common'; export const OfferBubbleView = (props: { offer: TargetedOfferData, setOpen: Dispatch> }) => { const { offer = null, setOpen = null } = props; if(!offer) return; return setOpen(true) } onClose={ null }>
{ offer.title } ; };