I'm using React Native to develop a mobile app. I am using Tailwind CSS and React Navigation in it. Should I wrap my App component like this
<TailwindProvider utilities={utilities}>
<NavigationContainer>
<Welcome />
</NavigationContainer>
</TailwindProvider>
or
<NavigationContainer>
<TailwindProvider utilities={utilities}>
<Welcome />
</TailwindProvider>
</NavigationContainer>
In general, how to nest these tags ? For example how to nest if I use Redux and how to bring in store provider ?