import React from 'react'; import { Client, Provider, fetchExchange } from 'urql'; import { persistedExchange } from '@urql/exchange-persisted'; import LocationsList from './LocationsList'; const client = new Client({ url: 'https://trygql.formidable.dev/graphql/apq-weather', exchanges: [ persistedExchange({ preferGetForPersistedQueries: true, }), fetchExchange, ], }); function App() { return ( ); } export default App;