Crunchy Toast is a lightweight, customizable, and easy-to-use React library for displaying toast notifications in your web applications.
You can install the crunchy-toast
library via npm:
npm install crunchy-toast
To use Crunchy Toast in your React application, follow these steps:
showToast
function from the library:import showToast from 'crunchy-toast';
showToast
to display a toast notification:showToast('This is a sample toast message', 'success', 3000);
The showToast
function accepts three parameters:
message
: The text message you want to display in the toast.type
: The type of toast notification (options: ‘info’, ‘success’, ‘warning’, ‘alert’).duration
(optional): The duration in milliseconds for which the toast should be visible. Default is 3000ms (3 seconds).Here are some examples of how to use Crunchy Toast:
showToast('This is a basic toast message', 'info');
showToast('Success! Your action was successful', 'success', 2000);
showToast('Warning: Proceed with caution', 'warning', 4000);
showToast('Alert! An error occurred', 'alert', 6000);
We welcome contributions to the Crunchy Toast library! If you find a bug or have an enhancement in mind, please open an issue or submit a pull request on our Crunchy Toast.