import { PageWrap } from '../../_shared/PageWrap' import type { PageProps } from '../../types' import styles from './Settings.module.scss' import stylesSettings from '../../../styles/FeedSettings.module.scss' import { Icon } from '../../_shared/Icon' import { clsx } from 'clsx' import ProfileSettingsNavigation from '../../Discours/ProfileSettingsNavigation' import { SearchField } from '../../_shared/SearchField' export const ProfileSubscriptionsPage = (props: PageProps) => { return (

Подписки

Здесь можно управлять всеми своими подписками на сайте.

{}} class={styles.searchField} />

) } // for lazy loading export default ProfileSubscriptionsPage