import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { OverallSummaryView } from "./_components/overall-summary-report/overall-summary-view";

export default function OverallSummaryReportPage() {
  return (
    <CustomerPageShell>
      <OverallSummaryView />
    </CustomerPageShell>
  );
}
