mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 23:16:48 +00:00
25 lines
808 B
JavaScript
25 lines
808 B
JavaScript
import { useGlobal } from '@/lib/global'
|
|
import TagItemMini from './components/TagItemMini'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutTagIndex = (props) => {
|
|
const { locale } = useGlobal()
|
|
const { tagOptions } = props
|
|
return <LayoutBase {...props} >
|
|
<div className='bg-white dark:bg-gray-700 px-10 py-10 shadow'>
|
|
<div className='dark:text-gray-200 mb-5'><i className='mr-4 fas fa-tag'/>{locale.COMMON.TAGS}:</div>
|
|
<div id="tags-list" className="duration-200 flex flex-wrap ml-8">
|
|
{tagOptions.map(tag => {
|
|
return (
|
|
<div key={tag.name} className="p-2">
|
|
<TagItemMini key={tag.name} tag={tag} />
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
</div>
|
|
</LayoutBase>
|
|
}
|
|
|
|
export default LayoutTagIndex
|