maksit-webui/src/components/oauth/IdpLoginCallbackHandler.tsx
Maksym Sadovnychyy 25ae18bab6
Some checks failed
Storybook tests / storybook-tests (push) Has been cancelled
(feature): release as unified npm package @maks-it.com/webui, deepDelta fixes
2026-07-07 18:44:01 +02:00

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'