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

# Stackfront SDK

Build production-ready Shopify mobile apps with one React Native SDK.

## Quick Start

```bash theme={null}
yarn add react-native-stackfront-sdk
```

```tsx theme={null}
import { StackfrontProvider, useProducts } from 'react-native-stackfront-sdk';

function App() {
  return (
    <StackfrontProvider
      shopDomain="your-store.myshopify.com"
      developerApiKey="YOUR_API_KEY"
      appVersion="1.0.0"
    >
      <YourApp />
    </StackfrontProvider>
  );
}
```

Ready? Start with **[Getting Started](/getting-started)**.
