importtoastfrom'react-hot-toast';consthandleClick=()=>{toast.success('This is a success toast');};exportdefaultfunctionApp(){return(<div><buttononClick={handleClick}>Show Toast</button></div>);}
Add toast with options
Types
Success
Error
Loading
Example
toast.success('This is a success toast');toast.error('This is an error toast');toast.loading('This is a loading toast');