Flipper client plug-in for [React Query](https://github.com/tannerlinsley/react-query)
Flipper client plug-in for React Query
``bash`
$ npm i --save-dev react-query-native-devtools react-native-flipperor
$ yarn add --dev react-query-native-devtools react-native-flipper
Register the plugin in your application:
`javascript
import * as React from 'react';
import { QueryClient, QueryClientProvider } from 'react-query';
const queryClient = new QueryClient();
if (__DEV__) {
import('react-query-native-devtools').then(({ addPlugin }) => {
addPlugin({ queryClient });
});
}
function App() {
return (
);
}
``