import React, { VFC } from 'react'; import styles from './styles.module.scss'; import { ProfileSidebarHead } from '~/containers/profile/ProfileSidebarHead'; import { Filler } from '~/components/containers/Filler'; import classNames from 'classnames'; import markdown from '~/styles/common/markdown.module.scss'; import { Group } from '~/components/containers/Group'; import { Grid } from '~/components/containers/Grid'; import { Card } from '~/components/containers/Card'; import { Square } from '~/components/common/Square'; import { Button } from '~/components/input/Button'; interface ProfileSidebarMenuProps { onClose: () => void; } const ProfileSidebarMenu: VFC = ({ onClose }) => (
  • Настройки
  • Заметки
  • Удалённые посты

1 год 2 месяца

в убежище

24 поста

Создано

16545 лайка

получено

123123 комментария

под постами
); export { ProfileSidebarMenu };