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

# Quickstart

## Overview

The `@locai1/billing-react-sdk` package provides React components and hooks for seamless billing integration in your React applications. This guide will help you get started with the package.

## Prerequisites

* Node.js (version 12 or higher)
* npm, yarn or pnpm
* A GitHub account with access to the `@locai1` packages

## Installation

<Steps>
  <Step title="Configure .npmrc">
    Create or update the `.npmrc` file in your project's root directory with the following content:

    ```bash
    @locai1:registry=https://npm.pkg.github.com/
    //npm.pkg.github.com/:_authToken=${authToken}
    ```
  </Step>

  <Step title="Install the Package">
    Run the following command to install the `@locai1/billing-react-sdk` package:

    <CodeGroup>
      ```bash npm
      npm install @locai1/billing-react-sdk
      ```

      ```bash yarn
      yarn add @locai1/billing-react-sdk
      ```

      ```bash pnpm
      pnpm add @locai1/billing-react-sdk
      ```
    </CodeGroup>
  </Step>
</Steps>
