> For the complete documentation index, see [llms.txt](https://docs.ramper.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ramper.xyz/embedded-wallet-sdk/quickstart/for-react-native-apps/getting-started.md).

# Getting Started

## Usage <a href="#usage" id="usage"></a>

## Init the SDK <a href="#init-the-sdk" id="init-the-sdk"></a>

{% code title="container.tsx" %}

```jsx
  import { RamperProvider } from '@ramper-v2/native-core'
 
  <RamperProvider
    theme="light"
    appId="<your-app-id>"
    chain={chain}
    authUrl={AUTH_URL_DEFAULT}
  >
   // Nested components
   {children}
  <RamperProvider />
```

{% endcode %}

## Props <a href="#props" id="props"></a>

| Prop    | Type          | Default            | Description                          |
| ------- | ------------- | ------------------ | ------------------------------------ |
| appId   | string        | required           | Your Ramper application ID           |
| chain   | ChainNameEnum | 'tomo'             | The blockchain network to connect to |
| locale  | 'en' \| 'kr'  | 'en'               | Language setting                     |
| theme   | IThemes       | 'light'            | UI theme setting                     |
| authUrl | string        | AUTH\_URL\_DEFAULT | Ramper Authentication URL            |
