Q:React Native A page is composed of multiple components that render different data, so should I request this data through the main container component and pass it to the component through props, or render it directly after the request within the component?
now I use to request data and render separately in each component, but I find that if I print the data, there will be multiple outputs, which should be multiple renderings, right?
what should I do more appropriately?