page.tsx 409 B

1234567891011121314151617
  1. 'use client'
  2. import type { FC } from 'react'
  3. import { useTranslation } from 'react-i18next'
  4. import React, { useEffect } from 'react'
  5. import ToolProviderList from '@/app/components/tools/provider-list'
  6. const Layout: FC = () => {
  7. const { t } = useTranslation()
  8. useEffect(() => {
  9. document.title = `${t('tools.title')} - Dify`
  10. }, [])
  11. return <ToolProviderList />
  12. }
  13. export default React.memo(Layout)