Last active
January 14, 2022 23:13
-
-
Save hugotox/29a802015d17928ceb68b418e5af39f3 to your computer and use it in GitHub Desktop.
This file contains 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
// 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