1.0.7 • Published 4 years ago

react-alert-template-mui v1.0.7

Weekly downloads
388
License
MIT
Repository
github
Last release
4 years ago

react-alert-template-mui

Installation

npm install react-alert-template-mui

Demo

Edit react-alert-template-mui example

How to Use

Simple alert

alert.show("Oh look, an alert!");

Alert with title

alert.show("This is an alert with title!", {
  title: "Random Alert Title",
});

Change copy on close button

alert.show("This is an alert with title!", {
  title: "Random Alert Title",
  closeCopy: "Cancel",
});

Alert with extra actions

alert.show("This is an alert with extra actions!", {
  title: "Alert with extra actions!",
  actions: [
    {
      copy: "Do something",
      onClick: () => setAction("Actioned!"),
    },
  ],
});
1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago