import { t } from '@lingui/macro'; import { ThematicPreview } from '@ts/types/taxonomies'; import Link from 'next/link'; import styles from '../Widget.module.scss'; const RelatedThematics = ({ thematics }: { thematics: ThematicPreview[] }) => { const sortedThematics = [...thematics].sort((a, b) => a.title.localeCompare(b.title) ); const thematicsList = sortedThematics.map((thematic) => { return (
  • {thematic.title}
  • ); }); return (

    {thematics.length > 1 ? t`Related thematics` : t`Related thematic`}

    ); }; export default RelatedThematics;