mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
9 lines
No EOL
317 B
JavaScript
9 lines
No EOL
317 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React from "react";
|
|
import { FormattedMessage } from "react-intl";
|
|
|
|
const PostsNoMore = props => <p className="posts-no-more"><FormattedMessage id="posts.no_more"/></p>;
|
|
|
|
PostsNoMore.displayName = "PostsNoMore";
|
|
|
|
Telescope.registerComponent('PostsNoMore', PostsNoMore); |