import { MetaKind } from '@ts/types/app'; import { ThematicPreview } from '@ts/types/taxonomies'; import Link from 'next/link'; import { useIntl } from 'react-intl'; import { MetaItem } from '..'; const Thematics = ({ list, kind, }: { list: ThematicPreview[]; kind: MetaKind; }) => { const intl = useIntl(); const getThematics = () => { return list.map((thematic) => { return ( {thematic.title} ); }); }; return ( ); }; export default Thematics;