mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
19 lines
No EOL
487 B
JavaScript
19 lines
No EOL
487 B
JavaScript
import React from 'react';
|
|
|
|
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; |