Vulcan/packages/example-forum/lib/components/posts/PostsHome.jsx

13 lines
424 B
React
Raw Normal View History

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