20 lines
591 B
React
20 lines
591 B
React
import React, { useEffect, useState } from "react";
|
|
import method1 from "../../../assets/images/payment-method-1.png";
|
|
import method2 from "../../../assets/images/payment-method-2.png";
|
|
import method3 from "../../../assets/images/payment-method-3.png";
|
|
import method4 from "../../../assets/images/payment-method-4.png";
|
|
import CardList from "./CardList";
|
|
|
|
|
|
export default function PaymentMathodsTab() {
|
|
return (
|
|
<>
|
|
<div className="payment-method-tab w-full">
|
|
<div className="payment-item-wrapper w-full">
|
|
<CardList />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|