import PureRenderMixin from 'react-addons-pure-render-mixin'; import ImmutablePropTypes from 'react-immutable-proptypes'; import Avatar from './avatar'; import IconButton from './icon_button'; import DisplayName from './display_name'; import { Link } from 'react-router'; const NavigationBar = React.createClass({ propTypes: { account: ImmutablePropTypes.map.isRequired }, mixins: [PureRenderMixin], render () { return (
{this.props.account.get('acct')} Settings
); } }); export default NavigationBar;