import React, { VFC } from 'react'; import { SidebarWrapper } from '~/containers/sidebars/SidebarWrapper'; import styles from './styles.module.scss'; import { DialogComponentProps } from '~/types/modal'; import markdown from '~/styles/common/markdown.module.scss'; import { Button } from '~/components/input/Button'; import { Filler } from '~/components/containers/Filler'; import { ProfileSidebarHead } from '~/containers/profile/ProfileSidebarHead'; import classNames from 'classnames'; interface ProfileSidebarProps extends DialogComponentProps {} const ProfileSidebar: VFC = ({ onRequestClose }) => { return (

Здесь будет профиль

Но пока что мы просто тестируем как это будет выглядеть и будет ли это удобнее модалки

); }; export { ProfileSidebar };