Please try
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 " ";
}
};