import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListCashWithdrawalTable } from "./_components/list-cash-withdrawal-table/table";

export default function CashWithdrawalPage() {
  return (
    <CustomerPageShell>
      <ListCashWithdrawalTable />
    </CustomerPageShell>
  );
}
