DEV Community

Discussion on: My react-router doesn't work while using axios to fetch API.

 
frgarciames profile image
frgarciames

But you need to redirect to the source specific article. Newsapi's response has url attribute which is to redirect to that specific article.

Thread Thread
 
xnslx profile image
xnslx

If I don’t want to redirect to the external website, can I use react hooks to store the collection of articles that I fetched for further usage. Or is there any other way to store the data that I fetched? Thank you so much!

Thread Thread
 
frgarciames profile image
frgarciames

You already have the data stored. When you fetch data you are using useState hook to store the data with setNews.

Thread Thread
 
xnslx profile image
xnslx

Thank you for your advice and patience! I will have a try later! Thank you!