File tree 1 file changed +17
-13
lines changed
1 file changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
1
import { Description } from '@/src/components/typography'
2
2
import { Separator } from '@/src/components/ui/separator'
3
+ import path from 'node:path'
3
4
import type { SearchParams } from 'nuqs/server'
4
5
import { Suspense } from 'react'
5
6
import { SourceOnGitHub } from '../_components/source-on-github'
@@ -34,25 +35,28 @@ export default async function PaginationDemoPage({ searchParams }: PageProps) {
34
35
< ProductSection />
35
36
</ Suspense >
36
37
< SourceOnGitHub
37
- path = {
38
- process . cwd ( ) +
39
- '/ src/app/playground/(demos)/pagination/searchParams.ts'
40
- }
38
+ path = { path . resolve (
39
+ process . cwd ( ) ,
40
+ 'src/app/playground/(demos)/pagination/searchParams.ts'
41
+ ) }
41
42
/>
42
43
< SourceOnGitHub
43
- path = { process . cwd ( ) + '/src/app/playground/(demos)/pagination/page.tsx' }
44
+ path = { path . resolve (
45
+ process . cwd ( ) ,
46
+ 'src/app/playground/(demos)/pagination/page.tsx'
47
+ ) }
44
48
/>
45
49
< SourceOnGitHub
46
- path = {
47
- process . cwd ( ) +
48
- '/ src/app/playground/(demos)/pagination/pagination-controls.server.tsx'
49
- }
50
+ path = { path . resolve (
51
+ process . cwd ( ) ,
52
+ 'src/app/playground/(demos)/pagination/pagination-controls.server.tsx'
53
+ ) }
50
54
/>
51
55
< SourceOnGitHub
52
- path = {
53
- process . cwd ( ) +
54
- '/ src/app/playground/(demos)/pagination/pagination-controls.client.tsx'
55
- }
56
+ path = { path . resolve (
57
+ process . cwd ( ) ,
58
+ 'src/app/playground/(demos)/pagination/pagination-controls.client.tsx'
59
+ ) }
56
60
/>
57
61
</ >
58
62
)
You can’t perform that action at this time.
0 commit comments