import React, { Component } from 'react' import { Provider } from 'react-redux' import { Playground, store } from '@apollographql/graphql-playground-react' import './index.css' const fetch = window.fetch window.fetch = function() { arguments[1].credentials = 'include' return Promise.resolve(fetch.apply(global, arguments)) } class App extends Component { render() { return (

Super Graph Instant GraphQL

); } } export default App;