File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,10 @@ _Working correctly_
74
74
- Execute ` package-setup-1-basic-typescript `
75
75
- Execute ` package-setup-2-basic-typescript `
76
76
77
+ ### pagination
78
+ _ Fails because example has .js files_
79
+ - Execute ` package-setup-1-pagination `
80
+ - Execute ` package-setup-2-pagination `
77
81
78
82
### Notes on these examples
79
83
- .js doesn't work but .jsx does
Original file line number Diff line number Diff line change 71
71
"link-dependencies-basic-typescript" : " npm link react-examples-tanstack/basic-typescript/node_modules/react react-examples-tanstack/basic-typescript/node_modules/react-dom example/client/node_modules/@tanstack/react-query" ,
72
72
"unlink-package-basic-typescript" : " (cd react-examples-tanstack/basic-typescript && npm unlink react-query-rewind) && npm unlink" ,
73
73
"package-setup-1-basic-typescript" : " npm i && npm run install-basic-typescript && npm run link-dependencies-basic-typescript && npm run watch" ,
74
- "package-setup-2-basic-typescript" : " npm run link-package-basic-typescript && (cd react-examples-tanstack/basic-typescript && npm run dev)"
75
-
74
+ "package-setup-2-basic-typescript" : " npm run link-package-basic-typescript && (cd react-examples-tanstack/basic-typescript && npm run dev)" ,
76
75
76
+ "install-pagination" : " cd react-examples-tanstack/pagination && npm i" ,
77
+ "link-package-pagination" : " npm link && (cd react-examples-tanstack/pagination && npm link react-query-rewind)" ,
78
+ "link-dependencies-pagination" : " npm link react-examples-tanstack/pagination/node_modules/react react-examples-tanstack/pagination/node_modules/react-dom example/client/node_modules/@tanstack/react-query" ,
79
+ "unlink-package-pagination" : " (cd react-examples-tanstack/pagination && npm unlink react-query-rewind) && npm unlink" ,
80
+ "package-setup-1-pagination" : " npm i && npm run install-pagination && npm run link-dependencies-pagination && npm run watch" ,
81
+ "package-setup-2-pagination" : " npm run link-package-pagination && (cd react-examples-tanstack/pagination && npm run dev)"
77
82
},
78
83
"license" : " MIT" ,
79
84
"peerDependencies" : {
Original file line number Diff line number Diff line change @@ -8,13 +8,15 @@ import {
8
8
keepPreviousData ,
9
9
} from '@tanstack/react-query'
10
10
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
11
+ // import ReactQueryRewind from 'react-query-rewind'
11
12
12
13
const queryClient = new QueryClient ( )
13
14
14
15
export default function App ( ) {
15
16
return (
16
17
< QueryClientProvider client = { queryClient } >
17
18
< Example />
19
+ { /* <ReactQueryRewind /> */ }
18
20
</ QueryClientProvider >
19
21
)
20
22
}
You can’t perform that action at this time.
0 commit comments