import React from 'react' import { useSelector } from 'react-redux' import { selectIsAnonymousUser } from '../../store/selectors/selectIsAnonymousUser' import { DiagnosticsPageIcon, EventsPageIcon, LinkContainer, HeaderContainer, SegmentLogo, StyledButtonLink, UserPageIcon, HelpLink } from './style' export const Header = () => { const isIdentified = !useSelector(selectIsAnonymousUser) return ( ) }