Skip to content

SDK Initialization

Learn how to initialize the SilverOTA SDK in your React Native application.

Basic Setup

Initialize the SDK in your app's entry point (App.tsx or App.js):

tsx
import { SilverOTA } from '@silverbullet-ota/react-native';
import { YourAppComponent } from './src/App';

function App() {
  return <YourAppComponent />;
}

export default SilverbulletOta.wrap({})(App);

Next Steps

See Also