import { Components, registerComponent } from 'meteor/vulcan:core'; import React, { Component } from 'react'; import PropTypes from 'prop-types'; const PostsHome = (props, context) => { const terms = _.isEmpty(props.location && props.location.query) ? {view: 'top'}: props.location.query; return }; PostsHome.displayName = "PostsHome"; registerComponent('PostsHome', PostsHome);