mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-16 15:09:28 +00:00
9 lines
221 B
JavaScript
9 lines
221 B
JavaScript
import LayoutBase from './LayoutBase'
|
|
import BlogPostListScroll from './components/BlogPostListScroll'
|
|
|
|
export const LayoutTag = (props) => {
|
|
return <LayoutBase>
|
|
<BlogPostListScroll {...props} />
|
|
</LayoutBase>
|
|
}
|