import { CustomerPageShell } from "@/app/customer/_components/customer-page-shell";
import { AssetAllocationReportView } from "./_components/asset-allocation-report/asset-allocation-view";

export default function AssetAllocationReportPage() {
  return (
    <CustomerPageShell>
      <AssetAllocationReportView />
    </CustomerPageShell>
  );
}
