Skip to content

Instantly share code, notes, and snippets.

@hugotox
Last active January 14, 2022 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugotox/29a802015d17928ceb68b418e5af39f3 to your computer and use it in GitHub Desktop.
Save hugotox/29a802015d17928ceb68b418e5af39f3 to your computer and use it in GitHub Desktop.
// Plug in each id into the url below to get the image path:
// https://d1qwdw9cs0do74.cloudfront.net/IMAGE_ID/640x480
const data = [
149181341,
149181340,
149181333,
149181332,
149181334,
149181339,
149181342,
149181331,
149181337,
149181329
]
export const fakeGet = () => {
return new Promise<number[]>((resolve) => {
setTimeout(() => {
resolve(data)
}, 200)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment