You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
592 B
20 lines
592 B
import React from 'react'; |
|
import ImmutablePropTypes from 'react-immutable-proptypes'; |
|
|
|
export default class DisplayName extends React.PureComponent { |
|
|
|
static propTypes = { |
|
account: ImmutablePropTypes.map.isRequired, |
|
}; |
|
|
|
render () { |
|
const displayNameHtml = { __html: this.props.account.get('display_name_html') }; |
|
|
|
return ( |
|
<span className='display-name'> |
|
<bdi><strong className='display-name__html' dangerouslySetInnerHTML={displayNameHtml} /></bdi> <span className='display-name__account'>@{this.props.account.get('acct')}</span> |
|
</span> |
|
); |
|
} |
|
|
|
}
|
|
|