> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeekwallet.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> React SDK installation guide.

## Installation

To install the React SDK, run the following command:

<CodeGroup>
  ```bash npm theme={null}
  npm install @zeek-wallet/react
  ```

  ```bash yarn theme={null}
  yarn add @zeek-wallet/react
  ```

  ```bash bun theme={null}
  bun add @zeek-wallet/react
  ```
</CodeGroup>

## Usage

To use the React SDK, import it into your React application:

```tsx theme={null}
import { ZeekProvider } from '@zeek-wallet/react';

function App() {
  return (
    <ZeekProvider clientId="YOUR-CLIENT-ID">
      {/* Your app components */}
    </ZeekProvider>
  );
}
```

To further configure the SDK, the ZeekProvider accepts two optionals props: `theme` and `loginMethods`.

<Note>
  Login methods such as google and x must be configured inside the zeek dashboard before they can be used.
</Note>
