mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-11 20:06:54 +08:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import React, { useEffect } from 'react'
|
|
import ToolProviderList from '@/app/components/tools/provider-list'
|
|
|
|
const Layout: FC = () => {
|
|
const { t } = useTranslation()
|
|
|
|
useEffect(() => {
|
|
document.title = `${t('tools.title')} - Dify`
|
|
}, [])
|
|
|
|
return <ToolProviderList />
|
|
}
|
|
export default React.memo(Layout)
|