mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 15:09:22 +00:00
19 lines
606 B
JavaScript
19 lines
606 B
JavaScript
import CategoryItem from './CategoryItem'
|
|
|
|
const CategoryGroup = ({ currentCategory, categoryOptions }) => {
|
|
if (!categoryOptions) {
|
|
return <></>
|
|
}
|
|
return <div id='category-list' className='pt-4'>
|
|
<div className='mb-2'><i className='mr-2 fas fa-th' />分类</div>
|
|
<div className='flex flex-wrap'>
|
|
{categoryOptions?.map(category => {
|
|
const selected = currentCategory === category.name
|
|
return <CategoryItem key={category.name} selected={selected} category={category.name} categoryCount={category.count} />
|
|
})}
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
export default CategoryGroup
|