page.tsx 342 B

1234567891011121314
  1. 'use client'
  2. import type { FC } from 'react'
  3. import { useTranslation } from 'react-i18next'
  4. import React from 'react'
  5. import SkillIndex from '@/app/components/skill/index'
  6. const Layout: FC = () => {
  7. const { t } = useTranslation()
  8. document.title = `${t('common.menus.skill')}`
  9. return <SkillIndex />
  10. }
  11. export default React.memo(Layout)