mirror of
https://github.com/langgenius/dify.git
synced 2026-08-29 19:54:46 +08:00
11 lines
296 B
TypeScript
11 lines
296 B
TypeScript
import type { PropsWithChildren } from 'react'
|
|
import { getRouteMetadata } from '@/app/route-metadata'
|
|
|
|
export function generateMetadata() {
|
|
return getRouteMetadata('login', ($) => $.signBtn)
|
|
}
|
|
|
|
export default function OAuthCallbackLayout({ children }: PropsWithChildren) {
|
|
return children
|
|
}
|