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

# Providers Reference

> Web SDK React providers and context configuration

## SukiProvider

The main provider component for the Suki SDK, which wraps your application and provides context for the SDK state and methods.

```jsx React theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
import { SukiProvider } from '@suki-sdk/react';

function App() {
  return (
    <SukiProvider>
      {/* Your application components */}
    </SukiProvider>
  );
}
```

## Available properties

<ResponseField name="children" type="ReactNode">
  The child components that will have access to the Suki SDK context
</ResponseField>

## Next steps

<Icon icon="file-lines" iconType="solid" /> Refer to [Components section](/web-sdk/api-reference/components) for more information on the available components.
