import { useGlobal } from '@/lib/global' import TagItemMini from './components/TagItemMini' import LayoutBase from './LayoutBase' export const LayoutTagIndex = props => { const { tagOptions } = props const { locale } = useGlobal() return (
{locale.COMMON.TAGS}:
{tagOptions.map(tag => { return (
) })}
) }