import React, { PropTypes, Component } from 'react'; import { ListContainer, DocumentContainer } from "meteor/utilities:react-list-container"; import Posts from "meteor/nova:posts"; class PostsHome extends Component { getDefaultView() { return {view: 'top'} } render() { const params = {...this.getDefaultView(), ...this.props.location.query, listId: "posts.list.main"}; const {selector, options} = Posts.parameters.get(params); return ( ) } }; module.exports = PostsHome;