import { ExpandableWidget, List } from '@components/WidgetParts'; import { t } from '@lingui/macro'; import { ThematicPreview } from '@ts/types/taxonomies'; import Link from 'next/link'; 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 ( 1 ? t`Related thematics` : t`Related thematic`} withBorders={true} > ); }; export default RelatedThematics;