Files
2026-03-03 17:55:34 -06:00

17 lines
341 B
TypeScript

import { Metadata } from 'next';
import ReportesClient from './ReportesClient';
export const metadata: Metadata = {
title: "Reportes",
};
export default async function Page(props: {
searchParams?: Promise<{
key: string;
}>;
}) {
const params = await props.searchParams;
return <ReportesClient defaultKey={params?.key} />;
}