The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

16 lines
532 B

  1. import { FormattedMessage } from 'react-intl';
  2. import DisplayName from '../../../components/display_name';
  3. import ImmutablePropTypes from 'react-immutable-proptypes';
  4. const AutosuggestStatus = ({ status }) => (
  5. <div className='autosuggest-status'>
  6. <FormattedMessage id='search.status_by' defaultMessage='Status by {name}' values={{ name: <strong>@{status.getIn(['account', 'acct'])}</strong> }} />
  7. </div>
  8. );
  9. AutosuggestStatus.propTypes = {
  10. status: ImmutablePropTypes.map.isRequired
  11. };
  12. export default AutosuggestStatus;