mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
17 lines
No EOL
459 B
JavaScript
17 lines
No EOL
459 B
JavaScript
const PostListHeader = () => {
|
|
|
|
({PostViews, SearchForm, ListContainer, CategoriesList} = Telescope.components)
|
|
|
|
return (
|
|
<div className="post-list-header">
|
|
<div className="post-list-categories">
|
|
<ListContainer collection={Categories} limit={0} resultsPropName="categories" component={CategoriesList}/>
|
|
</div>
|
|
<PostViews />
|
|
<SearchForm/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
module.exports = PostListHeader;
|
|
export default PostListHeader; |