Parameters
| Parameter | Type | Description |
|---|---|---|
props | SignInImageProps | The props for the component. |
Returns
null | Element
The rendered component.
function SignInImage(props: SignInImageProps): null | Element;
| Parameter | Type | Description |
|---|---|---|
props | SignInImageProps | The props for the component. |
null | Element
The rendered component.
function App() {
// Use a different image from your app logo in the SignIn component
return (
<CDPReactProvider config={config} theme={themeOverrides}>
<SignIn>
<SignInBackButton />
<SignInImage src="https://example.com/image.png" alt="Example Image" />
<SignInTitle />
<SignInDescription />
<SignInForm />
<SignInFooter />
</SignIn>
</CDPReactProvider>
);
}
Was this page helpful?