mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 21:28:06 +00:00
20 lines
377 B
TypeScript
20 lines
377 B
TypeScript
import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
|
|
|
|
const Devtool = () => {
|
|
return (
|
|
<ReactQueryDevtools
|
|
initialIsOpen={false}
|
|
toggleButtonProps={{
|
|
style: {
|
|
position: 'fixed',
|
|
top: 36,
|
|
right: 148,
|
|
bottom: 'atuo',
|
|
left: 'auto',
|
|
},
|
|
}}
|
|
/>
|
|
)
|
|
}
|
|
|
|
export default Devtool
|