Files
NotionNext/themes/hexo/LayoutCategory.js
2022-03-30 15:34:25 +08:00

10 lines
319 B
JavaScript

import BlogPostListScroll from './components/BlogPostListScroll'
import LayoutBase from './LayoutBase'
export const LayoutCategory = props => {
const { tags, posts, category } = props
return <LayoutBase {...props}>
<BlogPostListScroll posts={posts} tags={tags} currentCategory={category}/>
</LayoutBase>
}