File size: 642 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
import { useTranslate } from 'i18n-calypso';
import { Comments } from 'calypso/landing/subscriptions/components/tab-views';
import SubscriptionsManagerWrapper from '../subscriptions-manager-wrapper';
const CommentSubscriptionsManager = () => {
const translate = useTranslate();
return (
<>
<div>
<div>
<SubscriptionsManagerWrapper
headerText={ translate( 'Manage subscribed posts' ) }
subHeaderText={ translate( 'Manage your site, RSS, and newsletter subscriptions.' ) }
>
<Comments />
</SubscriptionsManagerWrapper>
</div>
</div>
</>
);
};
export default CommentSubscriptionsManager;
|