Files
dify-mirror/web/app/account/(commonLayout)/page.tsx
Stephen Zhou 6d0e36479b refactor(i18n): use JSON with flattened key and namespace (#30114)
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
2025-12-29 14:52:32 +08:00

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>
)
}