You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.tsx 523B

12345678910111213141516171819202122
  1. 'use client'
  2. import type { FC } from 'react'
  3. import React from 'react'
  4. import { useTranslation } from 'react-i18next'
  5. import GroupName from '../../base/group-name'
  6. import MoreLikeThis from './more-like-this'
  7. /*
  8. * Include
  9. * 1. More like this
  10. */
  11. const ExperienceEnchanceGroup: FC = () => {
  12. const { t } = useTranslation()
  13. return (
  14. <div className='mt-7'>
  15. <GroupName name={t('appDebug.feature.groupExperience.title')} />
  16. <MoreLikeThis />
  17. </div>
  18. )
  19. }
  20. export default React.memo(ExperienceEnchanceGroup)