import React from 'react'; import ImmutablePropTypes from 'react-immutable-proptypes'; import Avatar from 'flavours/glitch/components/avatar'; import Permalink from 'flavours/glitch/components/permalink'; import { FormattedMessage } from 'react-intl'; import ImmutablePureComponent from 'react-immutable-pure-component'; import { profileLink } from 'flavours/glitch/util/backend_links'; export default class NavigationBar extends ImmutablePureComponent { static propTypes = { account: ImmutablePropTypes.map.isRequired, }; render () { return (
{this.props.account.get('acct')}
@{this.props.account.get('acct')} { profileLink !== undefined && ( )}
); }; }