The issue is that you aren't updating the state with the fetched data, so nothing is displayed on the screen. You need to store the fetched data in a state variable and render it in the UI. Also, you're not handling errors properly, so if the fetch fails, you won't see any feedback.