mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-15 15:09:25 +00:00
10 lines
228 B
JavaScript
10 lines
228 B
JavaScript
|
|
import BlogPostListPage from './components/BlogPostListPage'
|
|
import LayoutBase from './LayoutBase'
|
|
|
|
export const LayoutSearch = (props) => {
|
|
return <LayoutBase {...props}>
|
|
<BlogPostListPage {...props}/>
|
|
</LayoutBase>
|
|
}
|