update random-quote-machine

This commit is contained in:
2020-04-06 03:19:43 -07:00
parent 2627db15bd
commit 5ef5e70118
21 changed files with 128 additions and 74 deletions

View File

@@ -21,20 +21,10 @@ class TweetQuote extends React.Component {
);
}
return (
<div className="tweetQuoteContainer">
<div className={tweetQuoteClass}>
<a
href={href}
target="_blank"
rel="noopener noreferrer"
id="tweet-quote"
>
<FontAwesomeIcon
icon={faTwitter}
className={colors[this.props.colorCount]}
/>
</a>
</div>
<div className={tweetQuoteClass}>
<a href={href} target="_blank" rel="noopener noreferrer" id="tweet-quote">
<FontAwesomeIcon icon={faTwitter} className={colors[this.props.colorCount]}/>
</a>
</div>
);
}