import { useTranslate } from 'i18n-calypso'; import DocumentHead from 'calypso/components/data/document-head'; import CommentSettingsComponent from 'calypso/me/notification-settings/comment-settings'; import NotificationsComponent from 'calypso/me/notification-settings/main'; import NotificationSubscriptions from 'calypso/me/notification-settings/reader-subscriptions'; import WPcomSettingsComponent from 'calypso/me/notification-settings/wpcom-settings'; export function notifications( context, next ) { const NotificationsTitle = () => { const translate = useTranslate(); return ; }; context.primary = ( <> ); next(); } export function comments( context, next ) { const CommentsTitle = () => { const translate = useTranslate(); return ; }; context.primary = ( <> ); next(); } export function updates( context, next ) { const UpdatesTitle = () => { const translate = useTranslate(); return ; }; context.primary = ( <> ); next(); } export function subscriptions( context, next ) { const SubscriptionsTitle = () => { const translate = useTranslate(); return ; }; context.primary = ( <> ); next(); }