Created
May 13, 2022 21:59
-
-
Save gwmccubbin/fbb09dd040eb7c8e016871b61fd07ead to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Alert = () => { | |
return ( | |
<div> | |
<div className="alert alert--remove"> | |
<h1>Transaction Pending...</h1> | |
</div> | |
<div className="alert alert--remove"> | |
<h1>Transaction Will Fail</h1> | |
</div> | |
<div className="alert alert--remove"> | |
<h1>Transaction Successful</h1> | |
<a | |
href='' | |
target='_blank' | |
rel='noreferrer' | |
> | |
</a> | |
</div> | |
<div className="alert alert--remove"></div> | |
</div> | |
); | |
} | |
export default Alert; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment