mentorenwahl/docker/frontend/lib/client.ts

7 lines
157 B
TypeScript
Raw Normal View History

2022-01-29 15:40:39 +00:00
import { ApolloClient, InMemoryCache } from "@apollo/client";
export const client = new ApolloClient({
uri: "/graphql",
cache: new InMemoryCache(),
});