CDP Frontend SDK
    Preparing search index...

    Function SignInTitle

    • A title for the SignIn component.

      Parameters

      Returns Element

      The rendered component.

      function App() {
      // Render a custom title in the SignIn component
      return (
      <CDPReactProvider config={config} theme={themeOverrides}>
      <SignIn>
      <SignInBackButton />
      <SignInImage />
      <SignInTitle>
      Custom Sign In Title
      </SignInTitle>
      <SignInDescription />
      <SignInForm />
      <SignInFooter />
      </SignIn>
      </CDPReactProvider>
      );
      }