challenge-vtex-io-samuelcon.../react/parcelamentoPage.tsx
2023-01-30 15:01:27 -03:00

24 lines
646 B
TypeScript

import React from 'react'
import { useProduct } from 'vtex.product-context'
const Parcelamento = () => {
const product = useProduct()
const Installments = {
numberOfInstallments:
product?.selectedItem?.sellers[0].commertialOffer.Installments[3]
.NumberOfInstallments,
}
const Price = {
numberOfInstallments: product?.selectedItem?.sellers[0].commertialOffer.Installments[3].Value
}
console.log(product);
return <p>
{Installments.numberOfInstallments}&nbsp;x&nbsp;de&nbsp;R$&nbsp;
{Price.numberOfInstallments?.toFixed(2).toString().replace(".", ",")} sem juros
</p>
};
export default Parcelamento