Skip to content

Instantly share code, notes, and snippets.

@udittyagi
Created October 29, 2019 12:32
Show Gist options
  • Save udittyagi/257434bb45553d1c15a870c4e323142e to your computer and use it in GitHub Desktop.
Save udittyagi/257434bb45553d1c15a870c4e323142e to your computer and use it in GitHub Desktop.
const [data, setData] = useState([])
useEffect(() => {
axios.get('https://jsonplaceholder.typicode.com/photos').then(res => {
setData(res.data.slice(0, 15));
}).catch(err => {
console.error(err)
})
}, [])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment