How to integrate libraries like NextUI or TanStack Query which wrap providers? #4880
Unanswered
neeraj-codebuddy
asked this question in
Q&A
Replies: 2 comments
-
same question |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey, I don't know much about NextUI, but you can add a Provider in export default function layout(){
return (
<Provider>
<Component1>
<Outlet />
</Component1>
</Provider>
)
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I recently started exploring new frameworks and came across Modern.js. I'm liking it very much and wanted to play around with it a bit. While doing so, I also wanted to add NextUI which requires it be wrapped around a provider. However, I did not find any guide on how to include libraries which require wrapping your application
Provider
. Same goes for TanStack Query as well. Any help is appreciated.Beta Was this translation helpful? Give feedback.
All reactions