mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-28 01:37:41 +08:00
20 lines
341 B
TypeScript
20 lines
341 B
TypeScript
![]() |
import { ReactQueryDevtools } from 'react-query/devtools'
|
||
|
|
||
|
const Devtool = () => {
|
||
|
return (
|
||
|
<ReactQueryDevtools
|
||
|
initialIsOpen={false}
|
||
|
toggleButtonProps={{
|
||
|
style: {
|
||
|
position: 'fixed',
|
||
|
bottom: 0,
|
||
|
right: 0,
|
||
|
left: 'auto',
|
||
|
},
|
||
|
}}
|
||
|
/>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Devtool
|