Files
Users-Wrench/src/components/Settings/Tabs/PaymentMathodsTab.jsx
T
2023-07-18 19:47:23 +01:00

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>
</>
);
}