Need help to import News API with axios on React

Please try :slightly_smiling_face:

import axios from "axios";

export default async () => {
  const tokenURL =
    "http://newsapi.org/V2/everything?q=bitcoin&from=2019-11-30&sortBy=published At&apikey=xxx";

  try {
    const response1 = await axios.get(tokenURL);
    return response1;
  } catch {
    return "  ";
  }
};
1 Like