mirror of
https://github.com/langgenius/dify.git
synced 2025-08-01 13:58:23 +00:00

Co-authored-by: jZonG <jzongcode@gmail.com> Co-authored-by: Novice <novice12185727@gmail.com> Co-authored-by: nite-knite <nkCoding@gmail.com> Co-authored-by: Hanqing Zhao <sherry9277@gmail.com>
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
|