Smoking hot Notifications for React.
Lightweight, customizable and beautiful by default.
useToaster()
yarn add react-hot-toast
npm install react-hot-toast
Add the Toaster to your app first. It will take care of rendering all notifications emitted. Now you can trigger toast()
from anywhere!
import toast, { Toaster } from 'react-hot-toast';
const notify = () => toast('Here is your toast.');
const App = () => {
return (
<div>
<button onClick={notify}>Make me a toast</button>
<Toaster />
</div>
);
};
Find the full API reference on official documentation.
react-hot-toast was cooked by Timo Lins π¨βπ³
Author: timolins
Demo: https://react-hot-toast.com/
Source Code: https://github.com/timolins/react-hot-toast
#react #reactjs #javascript