import React from "react"; import { useProduct } from "vtex.product-context"; import styles from "./style.module.css"; const Pix = () => { const productContextValue = useProduct(); const productPrice = productContextValue?.product?.priceRange?.sellingPrice?.lowPrice; const discountValue = (Number(productPrice) * 10) / 100; const totalValue = Number(productPrice) - Number(discountValue); return (
desconto

R${totalValue.toFixed(2)}

10 % de desconto

); }; export default Pix;