1# With React Native
2
3<p>
4 <a href="https://stackblitz.com/github/urql-graphql/urql/tree/main/examples/with-react-native">
5 <img
6 alt="Open in StackBlitz"
7 src="https://img.shields.io/badge/open_in_stackblitz-1269D3?logo=stackblitz&style=for-the-badge"
8 />
9 </a>
10 <a
11 href="https://codesandbox.io/p/sandbox/github/urql-graphql/urql/tree/main/examples/with-react-native">
12 <img
13 alt="Open in CodeSandbox"
14 src="https://img.shields.io/badge/open_in_codesandbox-151515?logo=codesandbox&style=for-the-badge"
15 />
16 </a>
17</p>
18
19This example shows `urql` in use with React Native.
20
21To run this example install dependencies and run the `start` script:
22
23```sh
24yarn install
25yarn run start
26# or
27npm install
28npm run start
29```
30
31This example contains:
32
33- The `urql` bindings and a React Native app with a client set up in [`App.js`](./App.js)
34- A query for pokémon in [`src/screens/PokemonList.js`](src/screens/PokemonList.js)