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