import { metrics } from 'config'; import { useResponsiveLayout } from 'hooks'; import { Container } from 'components/layout'; import { Rooms } from 'screens'; const { STYLES, Z_INDEX } = metrics; export const PopUp = () => { const { top } = useResponsiveLayout(); const marginTop = top + STYLES.topBarHeight + 16; return ( {/* */} ); };