Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1import { render } from 'preact';
2import Pokemons from './Pokemons';
3
4const client = createClient({
5 url: 'https://trygql.formidable.dev/graphql/basic-pokedex',
6});
7
8render(
9 <React.StrictMode>
10 <Provider value={client}>
11 <Pokemons />
12 </Provider>
13 </React.StrictMode>,
14 document.getElementById('root')
15);