2017-03-23 16:27:59 +09:00
|
|
|
import { registerComponent } from 'meteor/vulcan:core';
|
2016-04-14 10:12:35 +09:00
|
|
|
import React from 'react';
|
2017-06-01 11:42:30 +09:00
|
|
|
import { FormattedMessage } from 'meteor/vulcan:i18n';
|
2016-04-14 10:12:35 +09:00
|
|
|
|
2016-11-03 23:00:30 -04:00
|
|
|
const PostsNoResults = props => <p className="posts-no-results"><FormattedMessage id="posts.no_results"/></p>;
|
2016-04-14 10:12:35 +09:00
|
|
|
|
2016-05-22 16:42:24 +09:00
|
|
|
PostsNoResults.displayName = "PostsNoResults";
|
|
|
|
|
2016-12-06 18:06:29 +01:00
|
|
|
registerComponent('PostsNoResults', PostsNoResults);
|