mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
93 lines
4.4 KiB
Markdown
93 lines
4.4 KiB
Markdown
# React-Toastify
|
|
|
|
[](https://opencollective.com/react-toastify) 
|
|

|
|

|
|

|
|

|
|

|
|
|
|
|
|
🎉 React-Toastify allows you to add notifications to your app with ease. No more nonsense!
|
|
|
|
## Installation
|
|
|
|
```
|
|
$ npm install --save react-toastify
|
|
$ yarn add react-toastify
|
|
```
|
|
|
|
## The gist
|
|
|
|
```jsx
|
|
import React from 'react';
|
|
|
|
import { ToastContainer, toast } from 'react-toastify';
|
|
import 'react-toastify/dist/ReactToastify.css';
|
|
|
|
function App(){
|
|
const notify = () => toast("Wow so easy !");
|
|
|
|
return (
|
|
<div>
|
|
<button onClick={notify}>Notify !</button>
|
|
<ToastContainer />
|
|
</div>
|
|
);
|
|
}
|
|
```
|
|
|
|
## Demo
|
|
|
|
[A demo is worth a thousand words](https://fkhadra.github.io/react-toastify/introduction)
|
|
|
|
## Documentation
|
|
|
|
Check the [documentation](https://fkhadra.github.io/react-toastify/introduction) to get you started !
|
|
|
|
## Contribute
|
|
|
|
Show your ❤️ and support by giving a ⭐. Any suggestions are welcome! Take a look at the contributing guide.
|
|
|
|
You can also find me on [reactiflux](https://www.reactiflux.com/). My pseudo is Fadi.
|
|
|
|
## Contributors
|
|
|
|
### Code Contributors
|
|
|
|
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
|
|
<a href="https://github.com/fkhadra/react-toastify/graphs/contributors"><img src="https://opencollective.com/react-toastify/contributors.svg?width=890&button=false" /></a>
|
|
|
|
### Financial Contributors
|
|
|
|
Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/react-toastify/contribute)]
|
|
|
|
#### Individuals
|
|
|
|
<a href="https://opencollective.com/react-toastify"><img src="https://opencollective.com/react-toastify/individuals.svg?width=890"></a>
|
|
|
|
#### Organizations
|
|
|
|
Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/react-toastify/contribute)]
|
|
|
|
<a href="https://opencollective.com/react-toastify/organization/0/website"><img src="https://opencollective.com/react-toastify/organization/0/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/1/website"><img src="https://opencollective.com/react-toastify/organization/1/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/2/website"><img src="https://opencollective.com/react-toastify/organization/2/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/3/website"><img src="https://opencollective.com/react-toastify/organization/3/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/4/website"><img src="https://opencollective.com/react-toastify/organization/4/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/5/website"><img src="https://opencollective.com/react-toastify/organization/5/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/6/website"><img src="https://opencollective.com/react-toastify/organization/6/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/7/website"><img src="https://opencollective.com/react-toastify/organization/7/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/8/website"><img src="https://opencollective.com/react-toastify/organization/8/avatar.svg"></a>
|
|
<a href="https://opencollective.com/react-toastify/organization/9/website"><img src="https://opencollective.com/react-toastify/organization/9/avatar.svg"></a>
|
|
|
|
## Release Notes
|
|
|
|
You can find the release note for the latest release [here](https://github.com/fkhadra/react-toastify/releases/latest)
|
|
|
|
You can browse them all [here](https://github.com/fkhadra/react-toastify/releases)
|
|
|
|
## License
|
|
|
|
Licensed under MIT
|