import DownloadCount from './base/download-count' type Props = { downloadCount: number tags: string[] } const CardMoreInfo = ({ downloadCount, tags, }: Props) => { return (
{tags && tags.length > 0 && ( <>
ยท
{tags.map(tag => (
# {tag}
))}
)}
) } export default CardMoreInfo