-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add React Query (Tanstack) for API call's and state management in client components #232
base: dev
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 👍
- Please refactor the hooks.
- Make sure to pull the latest changes from
dev
before committing to avoid any merge conflicts.
|
||
return ( | ||
<QueryClientProvider client={queryClient}> | ||
<div style={{ fontSize: '1rem' }}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The <div>
wrapping ReactQueryDevtools
seems unnecessary and doesn’t relate to its functionality.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good! 👍🏻
Please resolve the merge conflict so I can merge it.
Description
"@tanstack/react-query": "^5.66.0", "@tanstack/react-query-devtools": "^5.66.0",
/providers
directorydocuments
component to use tanstack query for data fetching and mutating.