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