mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 21:16:40 -04:00
11 lines
443 B
React
11 lines
443 B
React
![]() |
import { registerComponent } from 'meteor/vulcan:core';
|
||
|
import React from 'react';
|
||
|
|
||
|
const CommentsLoadMore = ({loadMore, count, totalCount}) => {
|
||
|
const label = totalCount ? `Load More (${count}/${totalCount})` : "Load More";
|
||
|
return <a className="comments-load-more" onClick={e => { e.preventDefault(); loadMore();}}>{label}</a>
|
||
|
}
|
||
|
|
||
|
CommentsLoadMore.displayName = "CommentsLoadMore";
|
||
|
|
||
|
registerComponent('CommentsLoadMore', CommentsLoadMore);
|