/* istanbul ignore file */ import '../styles/index.css'; import { ApolloProvider } from '@apollo/react-hooks'; import { useApollo } from '../lib/apolloClient'; export default function MyApp({ Component, pageProps }) { const apolloClient = useApollo(pageProps.initialApolloState); return ( ); }