Guest User

Untitled

a guest
Jan 21st, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const fakeBookList = [{ name: "Fever pitch", year: 1997 }, { name: "Harry Potter and the Philosopher's Stone", year: 1997 }]
  2.  
  3. const getBooks = () => new Promise((resolve, reject) => {
  4. setTimeout(() => resolve(fakeBookList), 2000)
  5. })
Add Comment
Please, Sign In to add comment