{currentAccountInfo?.avatarStatic && (
)}
{!standalone ? (
{' '}
) : (
hasOpener && (
)
)}
{!!replyToStatus && (
Replying to @
{replyToStatus.account.acct || replyToStatus.account.username}
’s status
)}
{!!editStatus && (
)}
);
}
function MediaAttachment({
attachment,
disabled,
onDescriptionChange = () => {},
onRemove = () => {},
}) {
const { url, type, id, description } = attachment;
const suffixType = type.split('/')[0];
return (
);
}
export default Compose;