import styles from './Popup.module.scss' import { Popup, PopupProps } from './Popup' import { useAuthStore } from '../../stores/auth' type ProfilePopupProps = Omit export const ProfilePopup = (props: ProfilePopupProps) => { const { session } = useAuthStore() return ( ) }