import Link from 'next/link' import React from 'react' const TagItem = ({ tag, selected }) => { return (
  • {`${tag.name} `} {tag.count ? `(${tag.count})` : ''}
  • ) } export default TagItem