mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
13 lines
No EOL
480 B
JavaScript
13 lines
No EOL
480 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React, { PropTypes, Component } from 'react';
|
|
import { ListContainer } from "meteor/utilities:react-list-container";
|
|
import Posts from "meteor/nova:posts";
|
|
|
|
const PostsHome = (props, context) => {
|
|
const terms = props.location && props.location.query;
|
|
return <Telescope.components.PostsListContainer terms={terms} component={Telescope.components.PostsList} />
|
|
};
|
|
|
|
PostsHome.displayName = "PostsHome";
|
|
|
|
module.exports = PostsHome; |