import type { MatchPackage } from 'features/BuyMatchPopup/types' import { SubscriptionType } from 'features/BuyMatchPopup/types' import { T9n } from 'features/T9n' import { Price } from 'features/Price' import { usePackage } from '../RegularPackage/usePackage' import { Wrapper, Description, PriceBlock, PriceTextWrapper, PriceTextTop, PriceTextBottom, } from './styled' type Props = { matchPackage: MatchPackage, } export const SinglePackage = ({ matchPackage }: Props) => { const { firstDescription, priceTextBottomLexic, priceTextTopLexic, } = usePackage(matchPackage) return ( {firstDescription} ) }