import '../styles/globals.scss' import { ApolloClient, InMemoryCache, ApolloProvider } from '@apollo/client' import { Provider } from 'next-auth/client' const client = new ApolloClient({ uri: '/api/graphql', cache: new InMemoryCache() }) function MyApp ({ Component, pageProps }) { return ( ) } export default MyApp