import React, { FC } from 'react'; import styles from './styles.module.scss'; import { Icon } from '~/components/input/Icon'; import { Link } from 'react-router-dom'; interface IProps { path: string; } const ProfileSidebarMenu: FC = ({ path }) => { const cleaned = path.replace(/\/$/, ''); return (
Настройки
Сообщения
); }; export { ProfileSidebarMenu };