import React, {Component, PropTypes} from 'react'; import {RetinaImg, Flexbox, EditableList} from 'nylas-component-kit'; class PreferencesAccountList extends Component { static propTypes = { accounts: PropTypes.array, selected: PropTypes.object, onAddAccount: PropTypes.func.isRequired, onSelectAccount: PropTypes.func.isRequired, onRemoveAccount: PropTypes.func.isRequired, } _renderAccount = (account)=> { const label = account.label; const accountSub = `${account.name || 'No name provided'} <${account.emailAddress}>`; return (
{label}
{accountSub} ({account.displayProvider()})
); } render() { if (!this.props.accounts) { return
; } return (
); } } export default PreferencesAccountList;