IntroOn this pageIntroLet's discover toastify-react in less than 5 minutes.Getting StartedInstallnpm install toastify-reactUsageimport toaster from 'toastify-react';function Profile() { return ( <div> <button onClick={() => toaster.success('Submitted Successfully')}> Submit </button> </div> );}