dify
This commit is contained in:
20
dify/web/app/components/apps/index.tsx
Normal file
20
dify/web/app/components/apps/index.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
'use client'
|
||||
import { useEducationInit } from '@/app/education-apply/hooks'
|
||||
import List from './list'
|
||||
import useDocumentTitle from '@/hooks/use-document-title'
|
||||
import { useTranslation } from 'react-i18next'
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user