mirror of
https://github.com/langgenius/dify.git
synced 2025-11-18 04:13:35 +00:00
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
|
|
'use client'
|
||
|
|
import { useOAuthCallback } from '@/hooks/use-oauth'
|
||
|
|
|
||
|
|
const OAuthCallback = () => {
|
||
|
|
useOAuthCallback()
|
||
|
|
|
||
|
|
return <div />
|
||
|
|
}
|
||
|
|
|
||
|
|
export default OAuthCallback
|