# 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 (