Skip to main content
function SignInTitle(props: SignInTitleProps): Element;
A title for the SignIn component.

Parameters

ParameterTypeDescription
propsSignInTitlePropsThe props for the component.

Returns

Element The rendered component.

Example

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>
  );
}
I