9 lines
138 B
TypeScript
9 lines
138 B
TypeScript
|
import React from "react";
|
||
|
import Pix from "./ValuePix";
|
||
|
|
||
|
const ValuePix = () => {
|
||
|
return <p>R$ {Pix}</p>;
|
||
|
};
|
||
|
|
||
|
export default ValuePix;
|