mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutTag = (props) => {
|
|
const { tags, posts, tag } = props
|
|
|
|
return <LayoutBase {...props}>
|
|
<BlogPostListScroll posts={posts} tags={tags} currentTag={tag}/>
|
|
</LayoutBase>
|
|
}
|