import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { ListDerivativesFixedIncomeTable } from "./_components/list-derivatives-fixed-income-table/table";

export const dynamic = "force-dynamic";

export default function DerivativesFixedIncomePage() {
  return (
    <CustomerPageShell>
      <ListDerivativesFixedIncomeTable />
    </CustomerPageShell>
  );
}
