Skip to content

Commit fe86ba5

Browse files
committed
chore: Add demo file with tabs
To showcase the GitHub web UI using URL state to set tab width.
1 parent 6dbc145 commit fe86ba5

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
demo-tabs.tsx

demo-tabs.tsx

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+
}

0 commit comments

Comments
 (0)