File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ demo-tabs.tsx
Original file line number Diff line number Diff line change
1
+ 'use client'
2
+
3
+ import { parseAsInteger , useQueryState } from 'nuqs'
4
+
5
+ export function Demo ( ) {
6
+ const [ hello , setHello ] = useQueryState ( 'hello' , { defaultValue : '' } )
7
+ const [ count , setCount ] = useQueryState (
8
+ 'count' ,
9
+ parseAsInteger . withDefault ( 0 )
10
+ )
11
+ return (
12
+ < >
13
+ < button
14
+ className = "peer inline-flex h-10 items-center justify-center whitespace-nowrap rounded-md bg-primary px-4 py-2 text-sm font-medium tabular-nums text-primary-foreground ring-offset-background transition-colors hover:bg-primary/90 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50"
15
+ onClick = { ( ) => setCount ( c => c + 1 ) }
16
+ data-interacted = { count > 0 }
17
+ >
18
+ Count: { count }
19
+ </ button >
20
+ < input
21
+ value = { hello }
22
+ placeholder = "Enter your name"
23
+ className = "peer flex h-10 rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50"
24
+ onChange = { e => setHello ( e . target . value || null ) }
25
+ data-interacted = { Boolean ( hello ) }
26
+ />
27
+ < p > Hello, { hello || 'anonymous visitor' } !</ p >
28
+ </ >
29
+ )
30
+ }
You can’t perform that action at this time.
0 commit comments