import React, { FC } from 'react' import { Text } from '@vtex/store-ui' import { useFormattedPrice } from './useFormattedPrice' export const FormattedPrice: FC<{ value?: number | null }> = ({ value }) => { const formattedPrice = useFormattedPrice(value) return ( {formattedPrice} ) }