Fetch all shops for the view

In the frontend, to fetch the shops using this list API, we will set up a fetch method in client/shop/api-shop.js:

const list = () => {  return fetch('/api/shops', {    method: 'GET',  }).then(response => {    return response.json()  }).catch((err) => console.log(err))}

Get Full-Stack React Projects now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.