import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { CashBalanceView } from "./_components/cash-balance-report/cash-balance-view";

export default function CashBalanceReportPage() {
  return (
    <CustomerPageShell>
      <CashBalanceView />
    </CustomerPageShell>
  );
}
