import React, { PureComponent } from 'react'; import PropTypes from 'prop-types'; import { Components, registerComponent } from 'meteor/vulcan:core'; class PostsDay extends PureComponent { render() { const {date, posts} = this.props; const noPosts = posts.length === 0; return (