15 lines
271 B
React
15 lines
271 B
React
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>
|
|
</>
|
|
);
|
|
}
|