The current state of the SignIn component.
function EmailComponent() {
const { state } = useSignInContext();
return <div>Submitted email: {state.email}</div>;
}
function App() {
return (
<CDPReactProvider config={config} theme={themeOverrides}>
<SignIn>
<SignInTitle />
<SignInDescription />
<EmailComponent />
<SignInForm />
</SignIn>
</CDPReactProvider>
A context for the SignIn component.