import { MetaKind } from '@ts/types/app'; import { TopicPreview } from '@ts/types/taxonomies'; import Link from 'next/link'; import { useIntl } from 'react-intl'; import { MetaItem } from '..'; const Topics = ({ list, kind }: { list: TopicPreview[]; kind: MetaKind }) => { const intl = useIntl(); const getTopics = () => { return list.map((topic) => { return ( {topic.title} ); }); }; return ( ); }; export default Topics; t type='hidden' name='id' value='daffe6e8b9e2021ffb9d006482143bc4db985f02'/> The frontend of my personal website.Armand Philippot
summaryrefslogtreecommitdiffstats
path: root/src/components/MDX/index.tsx
blob: bc7aa3508d9fed83e541c7f4ff7949e3f2858763 (plain)
1
2
3
4
5
6