challenge-vtex-io/react/components/Example/paymentWithPix.tsx

25 lines
683 B
TypeScript
Raw Normal View History

import React from 'react';
import {useProduct} from 'vtex.product-context';
2023-02-09 19:25:08 +00:00
import styles from "./styles.css";
const paymentWithPix =() => {
const product = useProduct();
let imagePix = "https://agenciamagma.vtexassets.com/arquivos/pix-image-victor_souza.svg"
return (
<div className={styles.wrapperPix}>
<img className={styles.wrapperPixImage}src={imagePix} alt="Imagem do icone do pix" />
<div className={styles.wrapperPrices}>
2023-02-09 19:25:08 +00:00
<p className={styles.wrapperTitle}>{(product?.product?.priceRange.sellingPrice.highPrice || 0) * (0.9)}</p>
<p className={styles.wrapperSubtitle}>R$ 10 % de desconto</p>
</div>
</div>
)
}
export default paymentWithPix