15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
import React from "react";
|
|
import { useProduct } from "vtex.product-context";
|
|
// import styles from "./styles.css";
|
|
|
|
const Pix = () => {
|
|
const product = useProduct();
|
|
console.log(product);
|
|
|
|
return <span>Pixxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</span>;
|
|
|
|
// return <button className={styles.PixButton}>Pix</button>;
|
|
};
|
|
|
|
export default Pix;
|