2016-08-08 11:18:21 +09:00
|
|
|
import Telescope from 'meteor/nova:lib';
|
2016-06-17 14:44:53 +09:00
|
|
|
import React, { PropTypes, Component } from 'react';
|
2016-06-23 11:40:35 +09:00
|
|
|
import Posts from "meteor/nova:posts";
|
2016-06-10 19:19:32 +09:00
|
|
|
|
2016-10-25 16:24:03 +09:00
|
|
|
const PostsHome = (props, context) => {
|
2016-10-27 15:15:22 +09:00
|
|
|
const terms = props.location && props.location.query;
|
2016-10-27 16:06:42 +09:00
|
|
|
return <Telescope.components.PostsListContainer terms={terms} component={Telescope.components.PostsList} />
|
2016-10-25 16:24:03 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
PostsHome.displayName = "PostsHome";
|
|
|
|
|
2016-10-27 15:15:22 +09:00
|
|
|
module.exports = PostsHome;
|