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