mentorenwahl/docker/frontend/lib/client.ts
Dominic Grimm 0e742965cc
All checks were successful
continuous-integration/drone/push Build is passing
Added frontend
2022-01-29 16:40:39 +01:00

7 lines
157 B
TypeScript

import { ApolloClient, InMemoryCache } from "@apollo/client";
export const client = new ApolloClient({
uri: "/graphql",
cache: new InMemoryCache(),
});