How can you display data fetched from an API in a React Native app?
To display data fetched from an API in a React Native app, you typically use setState() to update the component's state with the fetched data. This triggers a re-render, and the updated data is reflected in the UI.