react swal code example
Example 1: react forwardref
const FancyButton = React.forwardRef((props, ref) => (
<button ref={ref} className="FancyButton">
{props.children}
</button>
));
const ref = React.createRef();
<FancyButton ref={ref}>Click me!</FancyButton>;
Example 2: switch alert
swal({
title: "Good job!",
text: "You clicked the button!",
icon: "success",
button: "Aww yiss!"
});
Example 3: sweet alert react
import swal from 'sweetalert';
Example 4: sweet alert react
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>