Created
July 6, 2021 06:43
-
-
Save manoj-mass/68720151c539ca67aa6e78df61f126dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import axios from 'axios'; | |
export const getPost = () => { | |
return axios.get('https://jsonplaceholder.typicode.com/posts/1').then(res => res.data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment