You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/01-app/04-api-reference/04-functions/use-link-status.mdx
+25-15
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ import { useLinkStatus } from 'next/navigation'
12
12
13
13
exportdefaultfunction LoadingIndicator() {
14
14
const { pending } =useLinkStatus()
15
-
returnpending? <div>Loading...</div> :null
15
+
returnpending? <span>⌛</span> :null
16
16
}
17
17
```
18
18
@@ -23,7 +23,7 @@ import { useLinkStatus } from 'next/navigation'
23
23
24
24
exportdefaultfunctionLoadingIndicator() {
25
25
const { pending } =useLinkStatus()
26
-
return pending ?<div>Loading...</div>:null
26
+
return pending ?<span>⌛</span>:null
27
27
}
28
28
```
29
29
@@ -89,17 +89,33 @@ In this example, navigating between categories updates the query string (e.g. ?c
89
89
90
90
You can use the `useLinkStatus` hook to render a lightweight loading indicator next to the active link and provide immediate feedback to the user while the data is being fetched.
0 commit comments