mirror of
https://github.com/langgenius/dify.git
synced 2026-08-29 19:54:46 +08:00
11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
import { getRouteMetadata } from '@/app/route-metadata'
|
|
import ResetPasswordLayout from './reset-password-layout'
|
|
|
|
export function generateMetadata() {
|
|
return getRouteMetadata('login', ($) => $.resetPassword)
|
|
}
|
|
|
|
export default function SignInLayout({ children }: any) {
|
|
return <ResetPasswordLayout>{children}</ResetPasswordLayout>
|
|
}
|