Created
January 30, 2023 18:18
-
-
Save rutvikbhatt9/bd4e76e349bc7d69a9f4b51a26c8d5bc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import client from './src/api'; | |
import { ApolloProvider } from '@apollo/client'; | |
import Home from './src/screens/Home' | |
const App= () => { | |
return ( | |
<> | |
{....} | |
<ApolloProvider client={client}> | |
<Home /> | |
</ApolloProvider> | |
</> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment