import React from 'react'; import ImmutablePropTypes from 'react-immutable-proptypes'; import StillImage from 'soapbox/components/still_image'; export default class AvatarOverlay extends React.PureComponent { static propTypes = { account: ImmutablePropTypes.map.isRequired, friend: ImmutablePropTypes.map.isRequired, }; render() { const { account, friend } = this.props; return (
); } }