mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 18:58:35 +08:00
16 lines
384 B
TypeScript
16 lines
384 B
TypeScript
'use client'
|
|
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import AppList from '@/app/components/explore/app-list'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
const Home = () => {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t(($) => $['mainNav.home'], { ns: 'common' }))
|
|
|
|
return <AppList />
|
|
}
|
|
|
|
export default React.memo(Home)
|