CDP Frontend SDK
    Preparing search index...

    Function SignInDescription

    • A description for the SignIn component.

      Parameters

      Returns Element

      The rendered component.

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