import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListBondFundsTable } from "./_components/list-bond-funds-table/table";

export const dynamic = "force-dynamic";

export default function BondFundsPage() {
  return (
    <CustomerPageShell>
      <ListBondFundsTable />
    </CustomerPageShell>
  );
}
