import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { CashPageContent } from "./_components/cash-page-content";

export const dynamic = "force-dynamic";

export default function CashPage() {
  return (
    <CustomerPageShell>
      <CashPageContent />
    </CustomerPageShell>
  );
}
