Skip to main content

SukiProvider

The main provider component for the Suki SDK, which wraps your application and provides context for the SDK state and methods.
React
import { SukiProvider } from '@suki-sdk/react';

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

Available Properties

children
ReactNode
The child components that will have access to the Suki SDK context

Next Steps

Refer to Components Section for more information on the available components.
Last modified on February 24, 2026