2017-03-23 16:27:59 +09:00
|
|
|
import { Components, registerComponent } from 'meteor/vulcan:core';
|
2016-03-30 09:24:52 +09:00
|
|
|
import React from 'react';
|
2016-03-30 10:52:40 +09:00
|
|
|
|
2016-04-14 10:12:35 +09:00
|
|
|
const PostsListHeader = () => {
|
2016-03-24 18:17:35 +09:00
|
|
|
|
2016-03-25 10:45:28 +09:00
|
|
|
return (
|
2016-04-07 14:17:35 +02:00
|
|
|
<div>
|
2016-04-19 15:45:36 +09:00
|
|
|
<div className="posts-list-header">
|
2016-11-10 10:54:43 +01:00
|
|
|
<div className="posts-list-header-categories">
|
2016-12-06 18:06:29 +01:00
|
|
|
<Components.CategoriesList />
|
2016-04-07 14:17:35 +02:00
|
|
|
</div>
|
2016-12-06 18:06:29 +01:00
|
|
|
<Components.PostsViews />
|
|
|
|
<Components.SearchForm/>
|
2016-03-25 10:45:28 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)
|
2016-03-24 18:17:35 +09:00
|
|
|
}
|
|
|
|
|
2016-05-22 16:42:24 +09:00
|
|
|
PostsListHeader.displayName = "PostsListHeader";
|
|
|
|
|
2016-12-06 18:06:29 +01:00
|
|
|
registerComponent('PostsListHeader', PostsListHeader);
|