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