Skip to content

Instantly share code, notes, and snippets.

@sommeeeer
Created May 6, 2025 07:19
Show Gist options
  • Select an option

  • Save sommeeeer/5812250b90b6e882afbb695417f79b98 to your computer and use it in GitHub Desktop.

Select an option

Save sommeeeer/5812250b90b6e882afbb695417f79b98 to your computer and use it in GitHub Desktop.
// search/page.tsx
export default async function Page({
searchParams,
}: {
searchParams: Promise<{ [key: string]: string | string[] | undefined }>
}) {
const q = (await searchParams).q;
return (
<>
<div>q: {q}</div>
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment