mirror of
https://github.com/langgenius/dify.git
synced 2026-03-15 14:20:34 +08:00
15 lines
438 B
TypeScript
15 lines
438 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import * as React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import ToolProviderList from '@/app/components/tools/provider-list'
|
|
import useDocumentTitle from '@/hooks/use-document-title'
|
|
|
|
const ToolsList: FC = () => {
|
|
const { t } = useTranslation()
|
|
useDocumentTitle(t('menus.tools', { ns: 'common' }))
|
|
|
|
return <ToolProviderList />
|
|
}
|
|
export default React.memo(ToolsList)
|