File tree 2 files changed +10
-0
lines changed
pages/pages/useQueryStates
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 1
1
'use client'
2
2
3
+ import Link from 'next/link'
3
4
import {
4
5
parseAsBoolean ,
5
6
parseAsFloat ,
@@ -39,6 +40,10 @@ const IntegrationPage = () => {
39
40
>
40
41
Clear
41
42
</ button >
43
+ < nav >
44
+ < Link href = "?string=Hello& int = 42 " > Link A</ Link >
45
+ < Link href = "?string=World& int = 47 " > Link B</ Link >
46
+ </ nav >
42
47
< p id = "json" > { JSON . stringify ( state ) } </ p >
43
48
< p id = "string" > { state . string } </ p >
44
49
< p id = "int" > { state . int } </ p >
Original file line number Diff line number Diff line change
1
+ import Link from 'next/link'
1
2
import { queryTypes , useQueryStates } from 'nuqs'
2
3
import { HydrationMarker } from '../../../components/hydration-marker'
3
4
@@ -36,6 +37,10 @@ const IntegrationPage = () => {
36
37
>
37
38
Clear
38
39
</ button >
40
+ < nav >
41
+ < Link href = "?string=Hello& int = 42 " > Link A</ Link >
42
+ < Link href = "?string=World& int = 47 " > Link B</ Link >
43
+ </ nav >
39
44
< p id = "json" > { JSON . stringify ( state ) } </ p >
40
45
< p id = "string" > { state . string } </ p >
41
46
< p id = "int" > { state . int } </ p >
You can’t perform that action at this time.
0 commit comments