Files
front-AT/app/(private)/Reportes/page.tsx
T

12 lines
247 B
TypeScript
Raw Normal View History

2026-01-14 14:53:36 -06:00
import ReportesClient from './ReportesClient';
2025-09-12 13:17:01 -04:00
2025-10-03 17:29:53 -06:00
export default async function Page(props: {
searchParams?: Promise<{
key: string;
}>;
}) {
const params = await props.searchParams;
2026-01-14 14:53:36 -06:00
return <ReportesClient defaultKey={params?.key} />;
2025-09-03 20:41:25 -04:00
}