import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListSwapsTable } from "./_components/list-swaps-table/table";

export default function SwapsPage() {
  return (
    <CustomerPageShell>
      <ListSwapsTable />
    </CustomerPageShell>
  );
}
