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

export const dynamic = "force-dynamic";

export default function DerivativesCommoditiesPage() {
  return (
    <CustomerPageShell>
      <ListDerivativesCommoditiesTable />
    </CustomerPageShell>
  );
}
