mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-20 06:35:54 +02:00
22 lines
443 B
JavaScript
22 lines
443 B
JavaScript
import React from "react";
|
|
import "../../css/signature.css";
|
|
|
|
function EmailToast({ isShow }) {
|
|
return (
|
|
<>
|
|
{isShow && (
|
|
<div style={{ display: "flex", justifyContent: "center" }}>
|
|
<div
|
|
className="alert alert-success successBox"
|
|
style={{ zIndex: "1051" }}
|
|
>
|
|
Email sent successfully!
|
|
</div>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default EmailToast;
|