npm install react-alert-template-mui
alert.show("Oh look, an alert!");
alert.show("This is an alert with title!", {
title: "Random Alert Title",
});
alert.show("This is an alert with title!", {
title: "Random Alert Title",
closeCopy: "Cancel",
});
alert.show("This is an alert with extra actions!", {
title: "Alert with extra actions!",
actions: [
{
copy: "Do something",
onClick: () => setAction("Actioned!"),
},
],
});