Skip to main content
For a full walk-through of how to get up and running with a sign-up and login flow using Stytch, check out our Quickstart Guide.
1

Install Packages

Install the React package:
npm install @stytch/react
2

Create the Stytch client

Initialize the Stytch UI client, passing in your Project’s public_token from the Project Overview of the Stytch Dashboard.
import { StytchClient } from '@stytch/react';

const stytch = new StytchClient(
  import.meta.env.STYTCH_PUBLIC_TOKEN, // or process.env.STYTCH_PUBLIC_TOKEN for non-Vite based projects
);
3

Wrap your application in <StytchProvider>

Next, pass the Stytch client to the <StytchProvider> component at the root of your application, making it accessible to all child components.
import { StrictMode } from 'react';
import { StytchProvider } from '@stytch/react';

const root = ReactDOM.createRoot(document.getElementById("root")!);

root.render(
  <StrictMode>
    <StytchProvider stytch={stytch}>
      <Router>
        <App />
      </Router>
    </StytchProvider>
  </StrictMode>
);
4

Add your login flow

You have now initialized the Stytch client, and can add the Stytch Login component to get a robust, end-to-end login flow working with just a simple config.