UNPKG
jotai-tanstack-query
Version:
latest (0.9.0)
0.9.0
0.8.8
0.8.7
0.8.6
0.8.5
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.2
0.7.1
0.7.0
0.6.0
0.5.0
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
0.0.1
0.0.0
👻🌺
github.com/jotaijs/jotai-tanstack-query
jotaijs/jotai-tanstack-query
jotai-tanstack-query
/
src
/
queryClientAtom.ts
9 lines
(6 loc)
•
230 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
QueryClient
}
from
'@tanstack/query-core'
import
{ atom }
from
'jotai/vanilla'
export
const
queryClientAtom =
atom
(
new
QueryClient
())
if
(process.
env
.
NODE_ENV
!==
'production'
) { queryClientAtom.
debugPrivate
=
true
}