import Link from 'next/link' const TagItem = ({ tag, count }) => (
{tag}{count && `(${count})`}
) export default TagItem