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