placeholder page

This commit is contained in:
Khalim Conn-Kowlessar 2025-11-10 22:33:37 +00:00
parent dfce54016d
commit ad2a46c2f6

View file

@ -0,0 +1,14 @@
export default async function ReportingPage(props: {
params: Promise<{ slug: string }>;
}) {
const params = await props.params;
const portfolioId = params.slug;
return (
<>
<div className="flex justify-center">
<div>Reporting Page for portfolio: {portfolioId}</div>
</div>
</>
);
}