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

export const dynamic = "force-dynamic";

export default function StockPage() {
  return (
    <CustomerPageShell>
      <ListStocksTable />
    </CustomerPageShell>
  );
}
