import React from 'react'; import ImmutablePropTypes from 'react-immutable-proptypes'; import { acctFull } from 'soapbox/utils/accounts'; import StillImage from 'soapbox/components/still_image'; const BrandingPreview = ({ account }) => (
); BrandingPreview.propTypes = { account: ImmutablePropTypes.map, }; export default BrandingPreview;