import { Components, registerComponent } from 'meteor/nova:lib'; import React, { PropTypes, Component } from 'react'; class PostsDay extends Component { render() { const {date, posts, networkStatus} = this.props; const noPosts = posts.length === 0; const loading = noPosts && networkStatus === 2; return (