Install the @stytch/vanilla-js, @stytch/react packages via npm or yarn.
npm install @stytch/vanilla-js @stytch/react --save
Initialize the SDK with the StytchHeadlessB2BClient constructor provided in the vanilla-js package.
Install the @stytch/vanilla-js, @stytch/react packages via npm or yarn.
npm install @stytch/vanilla-js @stytch/react --save
Initialize the SDK with the StytchHeadlessB2BClient constructor provided in the vanilla-js package.
Example
import { StytchProvider } from '@stytch/react';
import { StytchUIClient } from '@stytch/vanilla-js';
const stytch = new StytchUIClient('PUBLIC_TOKEN');
// Wrap your App in the StytchProvider
ReactDOM.render(
<StytchProvider stytch={stytch}>
<App />
</StytchProvider>,
document.getElementById('root'),
);