Skip to content

Instantly share code, notes, and snippets.

@nithin69
Created April 10, 2020 10:40
Show Gist options
  • Save nithin69/1238c2a69039deee3c52baee63cff430 to your computer and use it in GitHub Desktop.
Save nithin69/1238c2a69039deee3c52baee63cff430 to your computer and use it in GitHub Desktop.
using of axios
const url = ""
const fetchDetails = async () => {
try {
const { data } = await Axios.get(url);
console.log({ data });
// Do Something
} catch (eror) {
// DoSomethong
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment