mirror of
https://github.com/vale981/Vulcan
synced 2025-03-12 05:26:38 -04:00
10 lines
352 B
React
10 lines
352 B
React
![]() |
import { registerComponent } from 'meteor/vulcan:core';
|
||
|
import React from 'react';
|
||
|
import { FormattedMessage } from 'meteor/vulcan:i18n';
|
||
|
|
||
|
const PostsNoResults = props => <p className="posts-no-results"><FormattedMessage id="posts.no_results"/></p>;
|
||
|
|
||
|
PostsNoResults.displayName = "PostsNoResults";
|
||
|
|
||
|
registerComponent('PostsNoResults', PostsNoResults);
|