Parameters
| Parameter | Type | Description |
|---|---|---|
props | HTMLAttributes<HTMLDivElement> | The props for the component. |
Returns
Element
The sign-in footer.
function SignInFooter(props: HTMLAttributes<HTMLDivElement>): Element;
| Parameter | Type | Description |
|---|---|---|
props | HTMLAttributes<HTMLDivElement> | The props for the component. |
Element
The sign-in footer.
function App() {
// Add class to the footer
return (
<CDPReactProvider config={config} theme={themeOverrides}>
<SignIn>
<SignInBackButton />
<SignInImage />
<SignInTitle />
<SignInDescription />
<SignInForm />
<SignInFooter className="sign-in-footer" />
</SignIn>
</CDPReactProvider>
);
}
Was this page helpful?