12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import ReportesClient from './ReportesClient';
|
|
|
|
export default async function Page(props: {
|
|
searchParams?: Promise<{
|
|
key: string;
|
|
}>;
|
|
}) {
|
|
const params = await props.searchParams;
|
|
|
|
return <ReportesClient defaultKey={params?.key} />;
|
|
}
|