import App, { Container } from 'next/app' import React from 'react' import withApolloClient from '../lib/with-apollo-client' import { ApolloProvider } from 'react-apollo' class MyApp extends App { render () { const { Component, pageProps, apolloClient } = this.props return ( ) } } export default withApolloClient(MyApp)