startupConfig.openidImageUrl ? (
) : (
)
}
label={startupConfig.openidLabel}
id="openid"
/>
),
};
return (
startupConfig.socialLoginEnabled && (
<>
{startupConfig.emailLoginEnabled && (
<>
>
)}
{startupConfig.socialLogins?.map((provider) => providerComponents[provider] || null)}
>
)
);
}
export default SocialLoginRender;