Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5b2e5e363e4e30ee9e9e8f68ec95f05f4d31dfea 15 lines 319 B view raw
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);