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

export const dynamic = "force-dynamic";

export default function DerivativesCashPage() {
  return (
    <CustomerPageShell>
      <ListDerivativesCashTable />
    </CustomerPageShell>
  );
}
