import Link from 'next/link' import LayoutBase from './LayoutBase' export const LayoutTagIndex = (props) => { const { tagOptions } = props return (
{tagOptions.map(tag => { return (
{tag.name + (tag.count ? `(${tag.count})` : '')}
) })}
) }