Fetch

In the frontend, to fetch the games using this list API, we will set up a fetch method in api-game.js.

mern-vrgame/client/game/api-game.js:

const list = () => {  return fetch('/api/games', {    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.