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