Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created February 22, 2023 09:24
Show Gist options
  • Save shameemreza/44c034b365718b74a35fe1d25cb0e5cf to your computer and use it in GitHub Desktop.
Save shameemreza/44c034b365718b74a35fe1d25cb0e5cf to your computer and use it in GitHub Desktop.
import { useRouter } from "next/router";
function UserProfile() {
const router = useRouter();
const { id } = router.query;
// Fetch data for user with id
...
return (
<div>
<h1>{user.name}</h1>
<p>{user.bio}</p>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment