import React from 'react'; import { connect } from 'react-redux'; import PropTypes from 'prop-types'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { getAcct } from 'soapbox/utils/accounts'; import StillImage from 'soapbox/components/still_image'; import VerificationBadge from 'soapbox/components/verification_badge'; import { List as ImmutableList } from 'immutable'; import { displayFqn } from 'soapbox/utils/state'; const mapStateToProps = state => ({ displayFqn: displayFqn(state), }); const ProfilePreview = ({ account, displayFqn }) => (
); ProfilePreview.propTypes = { account: ImmutablePropTypes.map, displayFqn: PropTypes.bool, }; export default connect(mapStateToProps)(ProfilePreview);