mirror of
https://github.com/MAKS-IT-COM/maksit-webui.git
synced 2026-08-15 09:58:09 +02:00
15 lines
536 B
TypeScript
15 lines
536 B
TypeScript
import type { FC } from 'react'
|
|
import { useIdpLoginCallback, type UseIdpLoginCallbackOptions } from '@webui/core'
|
|
|
|
export type IdpLoginCallbackHandlerProps = UseIdpLoginCallbackOptions
|
|
|
|
const IdpLoginCallbackHandler: FC<IdpLoginCallbackHandlerProps> = (props) => {
|
|
useIdpLoginCallback(props)
|
|
return null
|
|
}
|
|
|
|
export { IdpLoginCallbackHandler }
|
|
export type { LoginExternalExchangeResponse } from '@webui/contracts'
|
|
/** @deprecated Use `LoginExternalExchangeResponse`. */
|
|
export type { IdpRedeemLoginResponse } from '@webui/contracts'
|