react-code-dataset
/
wp-calypso
/client
/reader
/site-subscriptions-manager
/comment-subscriptions-manager
/comment-subscriptions-manager.tsx
| 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; | |