Skip to content

Instantly share code, notes, and snippets.

@yaralahruthik
Last active December 7, 2021 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yaralahruthik/a3cd21c76fad3f52786c843d9ec75200 to your computer and use it in GitHub Desktop.
Save yaralahruthik/a3cd21c76fad3f52786c843d9ec75200 to your computer and use it in GitHub Desktop.
import ReactQueryWay from './components/ReactQueryWay';
import { QueryClient, QueryClientProvider } from 'react-query';
const queryClient = new QueryClient();
const App = () => {
return (
<>
<QueryClientProvider client={queryClient}>
<ReactQueryWay />
</QueryClientProvider>
</>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment