Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

docs(next): fix import source of useRouter (#3369)

Changed files
+1 -1
docs
+1 -1
docs/advanced/server-side-rendering.md
···
tell the server to do so by using the Next router and calling `.refresh()`.
```tsx
-
import { useRouter } from 'next/router';
+
import { useRouter } from 'next/navigation';
const Todo = () => {
const router = useRouter();