import ImmutablePropTypes from 'react-immutable-proptypes' import ImmutablePureComponent from 'react-immutable-pure-component' import { makeGetAccount } from '../selectors' import Avatar from './avatar' import DisplayName from './display_name' const makeMapStateToProps = () => { const getAccount = makeGetAccount() const mapStateToProps = (state, { id }) => ({ account: getAccount(state, id), }) return mapStateToProps } export default @connect(makeMapStateToProps) class AutosuggestAccount extends ImmutablePureComponent { static propTypes = { account: ImmutablePropTypes.map.isRequired, } render () { const { account } = this.props return (
) } }