From 385606ee05a8ceb9073169639eb1a311f81cac10 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Thu, 11 May 2023 19:28:47 -0600 Subject: AƱade informaciĆ³n a la vista de usuario MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/payment_method.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/components/payment_method.tsx (limited to 'src/components/payment_method.tsx') diff --git a/src/components/payment_method.tsx b/src/components/payment_method.tsx new file mode 100644 index 0000000..66f7e54 --- /dev/null +++ b/src/components/payment_method.tsx @@ -0,0 +1,23 @@ +export default function PaymentMethod({ payment_method }) { + return( + + + {payment_method.attributes.number} + + + {payment_method.attributes.expiration_day} + + + {payment_method.attributes.expiration_month} + + + {payment_method.attributes.expiration_year} + + + + + + ); +} \ No newline at end of file -- cgit v1.2.3