import { ButtonLink } from '@components/Buttons'; import { TopicPreview } from '@ts/types/taxonomies'; import Image from 'next/image'; import { useIntl } from 'react-intl'; import styles from './PostFooter.module.scss'; const PostFooter = ({ topics }: { topics: TopicPreview[] }) => { const intl = useIntl(); const getTopics = () => { return topics.map((topic) => { return (
  • {topic.featuredImage && ( {topic.featuredImage.altText} )} {topic.title}
  • ); }); }; return ( ); }; export default PostFooter; ilippot.com/about/'>aboutsummaryrefslogtreecommitdiffstats
    path: root/src/components/molecules/forms/radio-group/index.ts
    blob: ed40543ed5943c89a4335138a91644d0d6cd0155 (plain)
    1