dify/web/app/components/apps/index.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

21 lines
501 B
TypeScript

'use client'
import { useTranslation } from 'react-i18next'
import { useEducationInit } from '@/app/education-apply/hooks'
import useDocumentTitle from '@/hooks/use-document-title'
import List from './list'
const Apps = () => {
const { t } = useTranslation()
useDocumentTitle(t('menus.apps', { ns: 'common' }))
useEducationInit()
return (
<div className="relative flex h-0 shrink-0 grow flex-col overflow-y-auto bg-background-body">
<List />
</div>
)
}
export default Apps