Modulo makers3d desarrollado con codex V 0.0.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { DiscoverResultsScreen } from "../components/DiscoverResultsScreen";
|
||||
|
||||
export default async function DiscoverPage({
|
||||
searchParams
|
||||
}: {
|
||||
searchParams?: Promise<Record<string, string | string[] | undefined>>;
|
||||
}) {
|
||||
const params = await searchParams;
|
||||
|
||||
return (
|
||||
<main className="page-shell discover-page">
|
||||
<DiscoverResultsScreen searchParams={params} />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user