import type { ArticleTag } from '@/lib/types' interface Props { tags: ArticleTag[] } export default function TagRow({ tags }: Props) { if (!tags || tags.length === 0) return null return (