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

export const dynamic = "force-dynamic";

export default function BondPage() {
  return (
    <CustomerPageShell>
      <ListBondsTable />
    </CustomerPageShell>
  );
}
