Skip to content

Instantly share code, notes, and snippets.

@gwmccubbin
Created May 13, 2022 21:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwmccubbin/fbb09dd040eb7c8e016871b61fd07ead to your computer and use it in GitHub Desktop.
Save gwmccubbin/fbb09dd040eb7c8e016871b61fd07ead to your computer and use it in GitHub Desktop.
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