blob: 66f7e54736549ed17b555b3b5e2f2670dec80e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
export default function PaymentMethod({ payment_method }) {
return(
<tr className="bg-white border-b dark:bg-gray-800 dark:border-gray-700">
<th scope="row" className="px-6 py-4 font-medium text-gray-900 whitespace-nowrap dark:text-white">
{payment_method.attributes.number}
</th>
<td className="px-6 py-4">
{payment_method.attributes.expiration_day}
</td>
<td className="px-6 py-4">
{payment_method.attributes.expiration_month}
</td>
<td className="px-6 py-4">
{payment_method.attributes.expiration_year}
</td>
<td className="px-6 py-4">
<button type="button" className="focus:outline-none text-white bg-green-700 hover:bg-green-800 focus:ring-4 focus:ring-green-300 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2 dark:bg-green-600 dark:hover:bg-green-700 dark:focus:ring-green-800">
Editar
</button>
</td>
</tr>
);
}
|