# React-Toastify [](https://opencollective.com/react-toastify)         🎉 React-Toastify allows you to add notifications to your app with ease. ## Installation ``` $ npm install --save react-toastify $ yarn add react-toastify ``` ```jsx import React from 'react'; import { ToastContainer, toast } from 'react-toastify'; function App(){ const notify = () => toast("Wow so easy!"); return (