Implement a React component that fetches and displays stories from the Hacker News API.
Use the endpoint:
https://hacker-news.firebaseio.com/v0/topstories.json
to get a list of top story IDs.
For each story ID, fetch the story details from:
https://hacker-news.firebaseio.com/v0/item/{id}.json
Requirements:
useState
, useEffect
) to manage state.Bonus: