Skip to main content

Intro

Let's discover toastify-react in less than 5 minutes.

Getting Started

Install

npm install toastify-react

Usage

import toaster from 'toastify-react';

function Profile() {
return (
<div>
<button onClick={() => toaster.success('Submitted Successfully')}>
Submit
</button>
</div>
);
}