mirror of
https://github.com/langgenius/dify.git
synced 2026-02-09 23:20:12 -05:00
Co-authored-by: yyh <yuanyouhuilyz@gmail.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
15 lines
398 B
TypeScript
15 lines
398 B
TypeScript
'use client'
|
|
import { useTranslation } from 'react-i18next'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
import AccountPage from './account-page'
|
|
|
|
export default function Account() {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t('menus.account', { ns: 'common' }))
|
|
return (
|
|
<div className="mx-auto w-full max-w-[640px] px-6 pt-12">
|
|
<AccountPage />
|
|
</div>
|
|
)
|
|
}
|