Skip to content

Instantly share code, notes, and snippets.

@lcsjunior
Last active September 16, 2022 19:32
Show Gist options
  • Save lcsjunior/d438e4dd5ac513415d57d15a2d975165 to your computer and use it in GitHub Desktop.
Save lcsjunior/d438e4dd5ac513415d57d15a2d975165 to your computer and use it in GitHub Desktop.
import axios from 'axios';
const jsonify = (resp) => resp.data;
const fetcher = (url) => axios.get(url).then(jsonify);
export { jsonify, fetcher };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment