Skip to content

Instantly share code, notes, and snippets.

@chnbohwr
Created October 31, 2017 06:04
Show Gist options
  • Select an option

  • Save chnbohwr/5a5f6a05d6085ef0d468dcd96bbee16a to your computer and use it in GitHub Desktop.

Select an option

Save chnbohwr/5a5f6a05d6085ef0d468dcd96bbee16a to your computer and use it in GitHub Desktop.
get user profile by axios
const getMyProfile = async() => {
try {
const response = await axios.get('/api/myProfile');
return response.data;
} catch(e) {
throw e;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment