import React from 'react'; import ReactDOM from 'react-dom'; import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client'; import App from './components/App'; const client = new ApolloClient({ uri: 'https://joyce-spotify-graphql.herokuapp.com/graphql', cache: new InMemoryCache(), }); ReactDOM.render( , document.getElementById('root'), );