mirror of
https://github.com/langgenius/dify.git
synced 2026-08-27 21:10:04 -04:00
11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
import type { PropsWithChildren } from 'react'
|
|
import { getRouteMetadata } from '@/app/route-metadata'
|
|
|
|
export function generateMetadata() {
|
|
return getRouteMetadata('login', ($) => $['checkCode.checkYourEmail'])
|
|
}
|
|
|
|
export default function CheckCodeLayout({ children }: PropsWithChildren) {
|
|
return children
|
|
}
|