import { ApolloClient, InMemoryCache } from '@apollo/client' import { HNS_API_URL } from './constants' export const apolloClient = new ApolloClient({ uri: HNS_API_URL, cache: new InMemoryCache(), })