dify/web/app/components/apps/index.tsx
Stephen Zhou 76dc2ea5a0
Revert "migrate to flatted keys"
This reverts commit 469bcd1e64.
2025-12-25 18:06:00 +08:00

21 lines
490 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('common.menus.apps'))
useEducationInit()
return (
<div className="relative flex h-0 shrink-0 grow flex-col overflow-y-auto bg-background-body">
<List />
</div>
)
}
export default Apps